Skip to content

Type Alias: VCSCheckRun

Makaio Framework


Makaio Framework / contracts / VCSCheckRun

VCSCheckRun = z.infer<typeof VCSCheckRunSchema>

Defined in: ../../../packages/contracts/src/capabilities/vcs/schemas/checks.ts:34

Inferred TypeScript type for VCS check runs.

  • VCSCheckRun
    • z.infer<typeof VCSCheckRunSchema>
      • typeof VCSCheckRunSchema
type VCSCheckRun = {
id: number;
name: string;
status: 'completed' | 'queued' | 'in_progress';
conclusion: 'success' | 'cancelled' | 'skipped' | 'neutral' | 'failure' | 'timed_out' | 'action_required' | null;
startedAt: string | null;
completedAt: string | null;
url: string;
workflowName?: string | undefined;
jobName?: string | undefined;
};