We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8213af commit bd6dcfeCopy full SHA for bd6dcfe
.github/workflows/automerge-global.yml
@@ -11,6 +11,16 @@ on:
11
type: string
12
default: app/renovate
13
14
+# Ensure only one instance of this workflow runs per PR at a time.
15
+# With cancel-in-progress: false, new runs wait for previous ones to complete
16
+# instead of cancelling them. This prevents race conditions when multiple commits
17
+# are pushed quickly (e.g., by Renovate rebasing), ensuring each commit's checks
18
+# finish before the next automerge attempt starts.
19
+# See example: https://github.com/camunda/camunda-deployment-references/pull/1352
20
+concurrency:
21
+ group: ${{ github.workflow }}-${{ github.ref }}
22
+ cancel-in-progress: false
23
+
24
jobs:
25
# do not change the name
26
approve-and-auto-merge:
0 commit comments