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.
master
1 parent ed660bf commit a34910bCopy full SHA for a34910b
1 file changed
.github/workflows/UnitTests.yml
@@ -22,10 +22,10 @@ on:
22
- 'lib/**'
23
24
concurrency:
25
- # Skip intermediate builds: always.
26
- # Cancel intermediate builds: always.
27
- group: ${{ github.workflow }}-${{ github.ref }}
28
- cancel-in-progress: true
+ # Skip intermediate builds: all builds except for builds on the `master` branch
+ # Cancel intermediate builds: only pull request builds
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
+ cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
29
30
jobs:
31
test-default:
0 commit comments