Skip to content

Commit e4e8204

Browse files
authored
skip duplicate CI run (#261)
1 parent bc7074a commit e4e8204

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,18 @@ on:
1313
- 'README.md'
1414
- '.github/workflows/TagBot.yml'
1515
jobs:
16+
pre_job:
17+
# continue-on-error: true # Uncomment once integration is finished
18+
runs-on: ubuntu-latest
19+
# Map a step output to a job output
20+
outputs:
21+
should_skip: ${{ steps.skip_check.outputs.should_skip }}
22+
steps:
23+
- id: skip_check
24+
uses: fkirc/skip-duplicate-actions@v5
1625
test:
26+
needs: pre_job
27+
if: needs.pre_job.outputs.should_skip != 'true'
1728
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1829
runs-on: ${{ matrix.os }}
1930
strategy:

0 commit comments

Comments
 (0)