@oss-autopilot/core - v1.6.3
    Preparing search index...

    Interface DetermineStatusInput

    Input options for determineStatus() (see status-determination.ts).

    interface DetermineStatusInput {
        approachingThreshold: number;
        ciStatus: CIStatus;
        contributorUsername?: string;
        daysSinceActivity: number;
        dormantThreshold: number;
        hasActionableCIFailure?: boolean;
        hasIncompleteChecklist: boolean;
        hasMergeConflict: boolean;
        hasUnrespondedComment: boolean;
        lastMaintainerCommentDate?: string;
        latestChangesRequestedDate?: string;
        latestCommitAuthor?: string;
        latestCommitDate?: string;
        reviewDecision: ReviewDecision;
    }
    Index

    Properties

    approachingThreshold: number
    ciStatus: CIStatus
    contributorUsername?: string

    GitHub login of the PR contributor (configured username).

    daysSinceActivity: number
    dormantThreshold: number
    hasActionableCIFailure?: boolean

    True if at least one failing CI check is classified as 'actionable'.

    hasIncompleteChecklist: boolean
    hasMergeConflict: boolean
    hasUnrespondedComment: boolean
    lastMaintainerCommentDate?: string
    latestChangesRequestedDate?: string
    latestCommitAuthor?: string

    GitHub login of the HEAD commit's author (from repos.getCommit).

    latestCommitDate?: string
    reviewDecision: ReviewDecision