From 2ed4f8f0b3fc18207feb03078c92daec2fab92fd Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sat, 17 Aug 2024 12:03:54 -0400 Subject: [PATCH] Fix conditional for CI Pipeline call --- .github/workflows/ci-security.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-security.yml b/.github/workflows/ci-security.yml index c67a4ca921..84d5dd4457 100644 --- a/.github/workflows/ci-security.yml +++ b/.github/workflows/ci-security.yml @@ -60,7 +60,7 @@ jobs: ci-pipline-workflow-call: needs: security-checkpoint - if: github.event_name != 'pull_request_target' || needs.security-checkpoint.result == 'success' + if: (!(cancelled() || failure()) && (github.event_name != 'pull_request_target' || needs.security-checkpoint.result == 'success')) uses: ./.github/workflows/ci-pipeline.yml secrets: inherit with: