We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee59731 commit 930f930Copy full SHA for 930f930
1 file changed
.github/workflows/CI.yml
@@ -10,8 +10,8 @@ on:
10
# the `concurrency` settings ensure that not too many CI jobs run in parallel
11
concurrency:
12
# group by workflow and ref; the last slightly strange component ensures that for pull
13
- # requests, we limit to 1 concurrent job, but for the master branch we don't
14
- group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
+ # requests, we limit to 1 concurrent job, but for the default repository branch we don't
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref_name != github.event.repository.default_branch || github.run_number }}
15
# Cancel intermediate builds, but only if it is a pull request build.
16
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
17
0 commit comments