Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
achauphan committed Aug 21, 2024
1 parent 514d4ed commit 0da9521
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/no-dupe-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pre-checks:
runs-on: ubuntu-latest
outputs:
should_skip_AT2: ${{ steps.skip_check.outputs.should_skip_AT2 }}
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
Expand All @@ -29,11 +29,11 @@ jobs:
build-and-test:
name: Build and test changes
needs: pre-checks
if: needs.pre_checks.outputs.should_skip_AT2 != 'true'
if: needs.pre-checks.outputs.should_skip != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
echo "pretending to build some cool code!"
sleep 2m
sleep 30s
echo "finished building cool code!"

0 comments on commit 0da9521

Please sign in to comment.