From 59bd3eff0b2da6011521afe2c8a957f8ee2f005d Mon Sep 17 00:00:00 2001 From: Anuradha Karuppiah Date: Fri, 23 Aug 2024 20:12:42 +0000 Subject: [PATCH] Revert "Always run the PR builder step even if others are cancelled (#1736)" This reverts commit 0b284b58a4a5aa38895a066f663392ec53b3df83. --- .github/workflows/pr.yaml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index f135ff2dc2..42a261fdc0 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -43,6 +43,14 @@ permissions: jobs: + pr-builder: + needs: + - prepare + - checks + - ci_pipe + secrets: inherit + uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.02 + prepare: # Executes the get-pr-info action to determine if the PR has the skip-ci label, if the action fails we assume the # PR does not have the label @@ -91,13 +99,3 @@ jobs: test_container: nvcr.io/ea-nvidia-morpheus/morpheus:morpheus-ci-test-240614 secrets: NGC_API_KEY: ${{ secrets.NGC_API_KEY }} - - pr-builder: - # Always run this step even if others are skipped or cancelled - if: '!cancelled()' - needs: - - prepare - - checks - - ci_pipe - secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.02