Skip to content

Type Alias: CheckRunDetail

Makaio Framework


Makaio Framework / contracts / CheckRunDetail

CheckRunDetail = z.infer<typeof CheckRunDetailSchema>

Defined in: ../../../packages/contracts/src/capabilities/vcs-pr/schemas.ts:43

  • CheckRunDetail
    • z.infer<typeof CheckRunDetailSchema>
      • typeof CheckRunDetailSchema
type CheckRunDetail = {
id: number;
name: string;
workflowName: string;
conclusion: string;
failedStep: string | null;
detailsUrl: string | null;
completedAt: string | null;
source: 'check-run' | 'commit-status';
};