We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 440ccef commit fe909c5Copy full SHA for fe909c5
.github/workflows/autobuild.yml
@@ -6,6 +6,13 @@ on:
6
# FIXME: For testing:
7
- cron: '30 04 * * *'
8
9
+
10
+# Cancel in progress CI runs when a new run targeting the same PR or branch/tag is triggered.
11
+# https://stackoverflow.com/questions/66335225/how-to-cancel-previous-runs-in-the-pr-when-you-push-new-commitsupdate-the-curre
12
+concurrency:
13
+ group: ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress: true
15
16
jobs:
17
Delta:
18
timeout-minutes: 60
0 commit comments