File tree Expand file tree Collapse file tree 5 files changed +30
-1
lines changed Expand file tree Collapse file tree 5 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 7
7
tags : ' *'
8
8
pull_request :
9
9
10
+ concurrency :
11
+ # Skip intermediate builds: always, but for the master branch.
12
+ # Cancel intermediate builds: always, but for the master branch.
13
+ group : ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress : ${{ github.ref != 'refs/heads/master' && github.refs != 'refs/tags/*'}}
15
+
10
16
jobs :
11
17
build :
12
18
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 4
4
branches : [master]
5
5
tags : [v*]
6
6
pull_request :
7
+ paths-ignore :
8
+ - ' docs/**'
9
+
10
+ concurrency :
11
+ # Skip intermediate builds: always, but for the master branch and tags.
12
+ # Cancel intermediate builds: always, but for the master branch and tags.
13
+ group : ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress : ${{ github.ref != 'refs/heads/master' && github.refs != 'refs/tags/*' }}
7
15
8
16
jobs :
9
17
test :
Original file line number Diff line number Diff line change 8
8
tags : ' *'
9
9
pull_request :
10
10
11
+ concurrency :
12
+ # Skip intermediate builds: always, but for the master branch and tags.
13
+ # Cancel intermediate builds: always, but for the master branch and tags.
14
+ group : ${{ github.workflow }}-${{ github.ref }}
15
+ cancel-in-progress : ${{ github.ref != 'refs/heads/master' && github.refs != 'refs/tags/*'}}
16
+
11
17
jobs :
12
18
build :
13
19
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ name: Invalidations
2
2
3
3
on :
4
4
pull_request :
5
+ paths-ignore :
6
+ - ' docs/**'
5
7
6
8
concurrency :
7
9
# Skip intermediate builds: always.
30
32
- uses : julia-actions/julia-buildpkg@v1
31
33
- uses : julia-actions/julia-invalidations@v1
32
34
id : invs_default
33
-
35
+
34
36
- name : Report invalidation counts
35
37
run : |
36
38
echo "Invalidations on default branch: ${{ steps.invs_default.outputs.total }} (${{ steps.invs_default.outputs.deps }} via deps)" >> $GITHUB_STEP_SUMMARY
Original file line number Diff line number Diff line change 10
10
- master
11
11
paths-ignore :
12
12
- ' docs/**'
13
+
14
+ concurrency :
15
+ # Skip intermediate builds: always, but for the master branch.
16
+ # Cancel intermediate builds: always, but for the master branch.
17
+ group : ${{ github.workflow }}-${{ github.ref }}
18
+ cancel-in-progress : ${{ github.ref != 'refs/heads/master' }}
19
+
13
20
jobs :
14
21
test :
15
22
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments