We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5298096 commit 3ed8ffeCopy full SHA for 3ed8ffe
.github/workflows/downstream.yml
@@ -10,7 +10,18 @@ on:
10
- '.github/workflows/TagBot.yml'
11
12
jobs:
13
+ pre_job:
14
+ # continue-on-error: true # Uncomment once integration is finished
15
+ runs-on: ubuntu-latest
16
+ # Map a step output to a job output
17
+ outputs:
18
+ should_skip: ${{ steps.skip_check.outputs.should_skip }}
19
+ steps:
20
+ - id: skip_check
21
+ uses: fkirc/skip-duplicate-actions@v5
22
test:
23
+ needs: pre_job
24
+ if: needs.pre_job.outputs.should_skip != 'true'
25
name: ${{ matrix.package.group }}/${{ matrix.package.repo }}/${{ matrix.julia-version }}
26
runs-on: ${{ matrix.os }}
27
strategy:
0 commit comments