mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
8a5be3440f
Co-authored-by: Rhys Arkins <rhys@arkins.net>
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
// FIXME #12556
|
|
/* eslint-disable @typescript-eslint/naming-convention */
|
|
|
|
// eslint-disable-next-line typescript-enum/no-enum
|
|
export enum BranchStatus {
|
|
green = 'green', // 'success'
|
|
yellow = 'yellow', // 'created', 'running'
|
|
red = 'red', // 'error', 'failed'
|
|
}
|