@oss-autopilot/core - v3.14.5
    Preparing search index...

    Interface IssueVerification

    interface IssueVerification {
        assignees: string[];
        closedAt: string | null;
        linkedPRs: VerifiedLinkedPR[];
        number: number;
        owner: string;
        repo: string;
        state: "closed" | "open";
        stateReason: "completed" | "reopened" | "not_planned" | "duplicate" | null;
        title: string;
        url: string;
        userLogin: string;
        verdict: IssueAvailabilityVerdict;
        verdictReason: string;
    }
    Index

    Properties

    assignees: string[]
    closedAt: string | null
    linkedPRs: VerifiedLinkedPR[]
    number: number
    owner: string
    repo: string
    state: "closed" | "open"

    Lowercase normalization of GraphQL's OPEN/CLOSED union.

    stateReason: "completed" | "reopened" | "not_planned" | "duplicate" | null

    Lowercase GraphQL IssueStateReason. completed = fixed upstream (mark Done); not_planned = wontfix (drop permanently). Note: an OPEN issue can carry reopened — never infer closed-ness from a non-null reason; branch on state only.

    title: string
    url: string
    userLogin: string

    Login of the authenticated user the verdict was computed for.

    verdictReason: string