Skip to content

Commit c398dc9

Browse files
authored
Backport: Restore skip CI (#596)
1 parent 4556d0e commit c398dc9

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
@@ -32,7 +32,7 @@ jobs:
3232

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

.github/workflows/downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: fkirc/skip-duplicate-actions@v5
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: ${{ matrix.package.group }}/${{ matrix.package.repo }}/${{ matrix.julia-version }}
3636
runs-on: ${{ matrix.os }}
3737
strategy:

0 commit comments

Comments
 (0)