diff options
-rw-r--r-- | lib/platform/gitlab/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/platform/gitlab/index.ts b/lib/platform/gitlab/index.ts index 64e1e1caa42..e489d592cde 100644 --- a/lib/platform/gitlab/index.ts +++ b/lib/platform/gitlab/index.ts @@ -332,6 +332,7 @@ type BranchState = | 'pending' | 'created' | 'running' + | 'waiting_for_resource' | 'manual' | 'success' | 'failed' @@ -372,6 +373,7 @@ const gitlabToRenovateStatusMapping: Record<BranchState, BranchStatus> = { created: BranchStatus.yellow, manual: BranchStatus.yellow, running: BranchStatus.yellow, + waiting_for_resource: BranchStatus.yellow, success: BranchStatus.green, failed: BranchStatus.red, canceled: BranchStatus.red, |