gatelineAPI reference
interface ReviewInfo {
    lastTouched: null | number;
    path: string;
    task: null | string;
    verdicts: ("approve" | "escalate" | "request-changes")[];
}

Properties

lastTouched: null | number

Commit epoch seconds when this report last changed, or null.

path: string
task: null | string

Task id from the first # Review Report: <id> header, or null.

verdicts: ("approve" | "escalate" | "request-changes")[]

All verdicts in order; one per delivered round.