-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Always run the PR builder step even if others are cancelled (#…
- Loading branch information
1 parent
31f1214
commit 59bd3ef
Showing
1 changed file
with
8 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,14 @@ permissions: | |
|
||
jobs: | ||
|
||
pr-builder: | ||
needs: | ||
- prepare | ||
- checks | ||
- ci_pipe | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
|
||
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/[email protected] |