We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d58abdd commit bbf35d1Copy full SHA for bbf35d1
1 file changed
.github/workflows/CI.yml
@@ -8,10 +8,8 @@ on:
8
tags: ['*']
9
pull_request:
10
concurrency:
11
- # Skip intermediate builds: always.
12
- # Cancel intermediate builds: only if it is a pull request build.
13
- group: ${{ github.workflow }}-${{ github.ref }}
14
- cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ cancel-in-progress: true
15
jobs:
16
test:
17
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
0 commit comments