mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
fix(platform/gitlab): add missing "waiting_for_resource" branch status (#12832)
Co-authored-by: Rhys Arkins <rhys@arkins.net> Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
This commit is contained in:
parent
4d1c4f16dc
commit
6ad29b6124
1 changed files with 2 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue