renovate/lib/types/branch-status.ts

5 lines
122 B
TypeScript
Raw Normal View History

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