Type Alias WorkflowRunConclusion

WorkflowRunConclusion:
    | "success"
    | "failure"
    | "neutral"
    | "cancelled"
    | "skipped"
    | "timed_out"
    | "action_required"
    | "stale"
    | null

Possible conclusion values of a completed workflow run. null when the run is still in progress.