diff --git a/lib/platform/gitlab/index.ts b/lib/platform/gitlab/index.ts index 64e1e1caa42be80837cc7683c01c11fd7ea25f96..e489d592cde1293b5a61a18bfd5318de96377c70 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,