From 18893bfe4e95271f394e9a4ac009cc1f9bde2253 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Fri, 16 Aug 2024 20:49:32 -0400 Subject: [PATCH] Don't try to start the completion gate if the start gate never ran --- .github/workflows/ci-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 7066b20529..a30fa048b7 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -1865,9 +1865,9 @@ jobs: ci-completion-gate: name: CI Completion Gate - needs: [ pages-build, docker-build, build-deb, build-msi, validate-openapi-spec, upload-code-coverage, check-winget-pr-template, code-scanning, efcore-version-match ] + needs: [ pages-build, docker-build, build-deb, build-msi, validate-openapi-spec, upload-code-coverage, check-winget-pr-template, code-scanning, efcore-version-match, ci-start-gate ] runs-on: ubuntu-latest - if: always() + if: always() && needs.ci-start-gate.result == 'success' steps: - name: Setup dotnet uses: actions/setup-dotnet@v4