Type Alias: VCSCheckRun
Makaio Framework / contracts / VCSCheckRun
Type Alias: VCSCheckRun
Section titled “Type Alias: VCSCheckRun”VCSCheckRun =
z.infer<typeofVCSCheckRunSchema>
Defined in: ../../../packages/contracts/src/capabilities/vcs/schemas/checks.ts:34
Inferred TypeScript type for VCS check runs.
Type Composition
Section titled “Type Composition”VCSCheckRunz.infer<typeof VCSCheckRunSchema>typeof VCSCheckRunSchema
Resolved Shape
Section titled “Resolved Shape”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;};