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 dbdef2b commit 05bdbf5Copy full SHA for 05bdbf5
.github/workflows/CI.yml
@@ -5,6 +5,11 @@ on:
5
- master
6
tags: '*'
7
pull_request:
8
+concurrency:
9
+ # Skip intermediate builds: all builds except for builds on the `master` branch
10
+ # Cancel intermediate builds: only pull request builds
11
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
12
+ cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
13
jobs:
14
test:
15
runs-on: ${{ matrix.os }}
0 commit comments