File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 14
14
- ' LICENSE.md'
15
15
- ' README.md'
16
16
- ' .github/workflows/TagBot.yml'
17
+
18
+ concurrency :
19
+ group : build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }}
20
+ cancel-in-progress : true
21
+
17
22
jobs :
23
+ pre_job :
24
+ # continue-on-error: true # Uncomment once integration is finished
25
+ runs-on : ubuntu-latest
26
+ # Map a step output to a job output
27
+ outputs :
28
+ should_skip : ${{ steps.skip_check.outputs.should_skip }}
29
+ steps :
30
+ - id : skip_check
31
+ uses : fkirc/skip-duplicate-actions@v5
18
32
test :
33
+ needs : pre_job
34
+ if : needs.pre_job.outputs.should_skip != 'true'
19
35
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
20
36
runs-on : ${{ matrix.os }}
21
37
strategy :
You can’t perform that action at this time.
0 commit comments