File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,14 @@ concurrency:
55 cancel-in-progress : true
66
77on :
8- create :
9- tags :
108 push :
119 branches :
1210 - master
1311 paths-ignore :
1412 - ' LICENSE'
1513 - ' README.md'
1614 - ' .github/workflows/TagBot.yml'
15+ tags : ' *'
1716 pull_request :
1817 paths-ignore :
1918 - ' LICENSE'
3231
3332 test :
3433 needs : pre_job
35- if : needs.pre_job.outputs.should_skip != 'true'
34+ if : ${{ !cancelled() }} && (github.ref_type == 'tag' || needs.pre_job.outputs.should_skip != 'true')
3635 name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
3736 runs-on : ${{ matrix.os }}
3837 strategy :
Original file line number Diff line number Diff line change 11name : IntegrationTest
22on :
33 push :
4- branches : [master]
5- tags : [v*]
4+ branches :
5+ - master
6+ tags : ' *'
67 pull_request :
78 paths-ignore :
89 - ' LICENSE'
2526 uses : fkirc/skip-duplicate-actions@v5
2627 test :
2728 needs : pre_job
28- if : needs.pre_job.outputs.should_skip != 'true'
29+ if : ${{ !cancelled() }} && (github.ref_type == 'tag' || needs.pre_job.outputs.should_skip != 'true')
2930 name : ${{ matrix.package.group }}/${{ matrix.package.repo }}/${{ matrix.julia-version }}
3031 runs-on : ${{ matrix.os }}
3132 strategy :
You can’t perform that action at this time.
0 commit comments