mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 16:46:25 +00:00
5 lines
143 B
TypeScript
5 lines
143 B
TypeScript
export enum BranchStatus {
|
|
green = 'green', // 'success'
|
|
yellow = 'yellow', // 'created', 'running'
|
|
red = 'red', // 'error', 'failed'
|
|
}
|