renovate/lib/types/branch-status.ts
Sergei Zharinov 8a5be3440f
refactor: Use eslint rule to prohibit enums (#13703)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2022-01-21 15:33:23 +01:00

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'
}