From 747de4ca414f8c75ebb30150c53430d3e1797cfe Mon Sep 17 00:00:00 2001 From: Kyle Edwards Date: Thu, 22 Aug 2024 15:16:04 -0400 Subject: [PATCH] Try conditional --- .github/workflows/pr.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 13f7573d4f1..e794765d2df 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -12,12 +12,18 @@ concurrency: jobs: pr-builder: needs: + - never-run-test - never-run secrets: inherit uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.10 + 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!"