mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 16:46:25 +00:00
9024eda2a0
1. Branch related statuses are moved to lib/branch-constants.ts 2. Updated all the references Co-authored-by: Rhys Arkins <rhys@arkins.net>
8 lines
347 B
TypeScript
8 lines
347 B
TypeScript
// Branch Status
|
|
export const BRANCH_STATUS_SUCCESS = 'success';
|
|
export const BRANCH_STATUS_FAILURE = 'failure';
|
|
export const BRANCH_STATUS_ERROR = 'error';
|
|
export const BRANCH_STATUS_PENDING = 'pending';
|
|
export const BRANCH_STATUS_CREATED = 'created';
|
|
export const BRANCH_STATUS_RUNNING = 'running';
|
|
export const BRANCH_STATUS_FAILED = 'failed';
|