Skip to content

Commit

Permalink
Try conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleFromNVIDIA committed Aug 22, 2024
1 parent 1dab6f0 commit 747de4c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,18 @@ concurrency:
jobs:
pr-builder:
needs:
- never-run-test
- never-run
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
never-run-test:
runs-on: ubuntu-latest
outputs:
run-never-run: true
never-run:
needs: never-run-test
runs-on: ubuntu-latest
if: false
if: ${{ needs.never-run-test.outputs.run-never-run == 'true' }}
steps:
- run: |
echo "This should never run!"
Expand Down

0 comments on commit 747de4c

Please sign in to comment.