Skip to content

Commit d50a4ce

Browse files
authored
Restore skip CI (#594)
1 parent 6080984 commit d50a4ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
test:
3333
needs: pre_job
34-
if: ${{ !cancelled() }} && (github.ref_type == 'tag' || needs.pre_job.outputs.should_skip != 'true')
34+
if: needs.pre_job.outputs.should_skip != 'true'
3535
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
3636
runs-on: ${{ matrix.os }}
3737
strategy:

.github/workflows/downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: fkirc/skip-duplicate-actions@v5
3131
test:
3232
needs: pre_job
33-
if: ${{ !cancelled() }} && (github.ref_type == 'tag' || needs.pre_job.outputs.should_skip != 'true')
33+
if: needs.pre_job.outputs.should_skip != 'true'
3434
name: ${{ matrix.package.group }}/${{ matrix.package.repo }}/${{ matrix.julia-version }}
3535
runs-on: ${{ matrix.os }}
3636
strategy:

0 commit comments

Comments
 (0)