mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
4 lines
122 B
TypeScript
4 lines
122 B
TypeScript
export type BranchStatus =
|
|
| 'green' // 'success'
|
|
| 'yellow' // 'created', 'running'
|
|
| 'red'; // 'error', 'failed'
|