We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 159cedc commit e9ccdf5Copy full SHA for e9ccdf5
.github/workflows/ci.yml
@@ -7,8 +7,10 @@ on:
7
pull_request:
8
workflow_call:
9
10
-concurrency: # if the event is not a pull request, use the run number to make each run unique
11
- group: ci-${{ github.event_name == 'pull_request' || github.run_number }}-${{ github.ref_name }}
+concurrency:
+ # if the event is a pull request, use the PR number to make PR checks cancel previous runs
12
+ # if the event is not a pull request, use the run number to make each run unique
13
+ group: CI-${{ github.event_name == 'pull_request' && github.event.number || github.run_number }}
14
cancel-in-progress: true
15
16
jobs:
0 commit comments