Skip to content

Commit 5660164

Browse files
authored
ci: fix Datadog merge queue config filename (#7561) (#7562)
Move merge queue settings into `repository.datadog.yml` and remove `repository.datadog.yaml`. PR #7561 added the config under the wrong extension even though the `.yml` file already existed.
1 parent 416a1d9 commit 5660164

2 files changed

Lines changed: 19 additions & 23 deletions

File tree

repository.datadog.yaml

Lines changed: 0 additions & 23 deletions
This file was deleted.

repository.datadog.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
---
22
schema-version: v1
33
kind: mergequeue
4+
45
enable: false
6+
7+
branches:
8+
master:
9+
enable: true
10+
11+
# PRs A, B -> A, A+B workflows being generated
12+
workflow_type: speculative
13+
merge_method: squash
14+
gitlab_check_enable: true
15+
gitlab_jobs_retry_enable: true
16+
# Wait for the full pipeline to complete before checking the status (we have some jobs which auto-retry)
17+
gitlab_fail_fast: false
18+
# Do not add merge queue status labels on the PR, they will trigger required status checks and block the PR from the MQ
19+
skip_labels: true
20+
# Validate up to 5 PRs from the queue at once
21+
speculative_max_depth: 5
22+
# Run CI for A, A+B, and B such that if A or A+B fail, but B passes, we can still merge B
23+
speculative_fallback_enable: true

0 commit comments

Comments
 (0)