Skip to content

Commit

Permalink
Temporarily disable skip duplicate
Browse files Browse the repository at this point in the history
This seems broken at the moment (possibly at Github's end) (fkirc/skip-duplicate-actions#301)
  • Loading branch information
jishnub committed Dec 2, 2022
1 parent 58dee7f commit 2217003
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Expand Up @@ -18,19 +18,19 @@ concurrency:
cancel-in-progress: true

jobs:
pre_job:
# continue-on-error: true # Uncomment once integration is finished
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
# pre_job:
# # continue-on-error: true # Uncomment once integration is finished
# runs-on: ubuntu-latest
# # Map a step output to a job output
# outputs:
# should_skip: ${{ steps.skip_check.outputs.should_skip }}
# steps:
# - id: skip_check
# uses: fkirc/skip-duplicate-actions@v5

test:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
# needs: pre_job
# if: needs.pre_job.outputs.should_skip != 'true'
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
Expand Down

0 comments on commit 2217003

Please sign in to comment.