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 b559d67 commit 8b3f87eCopy full SHA for 8b3f87e
.github/workflows/integration-tests.yml
@@ -6,8 +6,11 @@ on: [push, pull_request]
6
permissions: read-all
7
8
concurrency:
9
- group: build-${{ github.event.pull_request.number || github.ref }}-${{github.workflow}}
10
- cancel-in-progress: true
+ # On master/release, we don't want any jobs cancelled
+ # On PR branches, we cancel the job if new commits are pushed
11
+ # More info: https://stackoverflow.com/a/70972844/1261287
12
+ group: ${{ github.ref }}
13
+ cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
14
15
jobs:
16
build:
0 commit comments