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:
5
5
cancel-in-progress : true
6
6
7
7
on :
8
- create :
9
- tags :
10
8
push :
11
9
branches :
12
10
- master
13
11
paths-ignore :
14
12
- ' LICENSE'
15
13
- ' README.md'
16
14
- ' .github/workflows/TagBot.yml'
15
+ tags : ' *'
17
16
pull_request :
18
17
paths-ignore :
19
18
- ' LICENSE'
32
31
33
32
test :
34
33
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')
36
35
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
37
36
runs-on : ${{ matrix.os }}
38
37
strategy :
Original file line number Diff line number Diff line change 1
1
name : IntegrationTest
2
2
on :
3
3
push :
4
- branches : [master]
5
- tags : [v*]
4
+ branches :
5
+ - master
6
+ tags : ' *'
6
7
pull_request :
7
8
paths-ignore :
8
9
- ' LICENSE'
25
26
uses : fkirc/skip-duplicate-actions@v5
26
27
test :
27
28
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')
29
30
name : ${{ matrix.package.group }}/${{ matrix.package.repo }}/${{ matrix.julia-version }}
30
31
runs-on : ${{ matrix.os }}
31
32
strategy :
You can’t perform that action at this time.
0 commit comments