renovate/lib/types/branch-status.ts
2022-11-20 07:34:23 +00:00

4 lines
122 B
TypeScript

export type BranchStatus =
| 'green' // 'success'
| 'yellow' // 'created', 'running'
| 'red'; // 'error', 'failed'