Don't try to start the completion gate if the start gate never ran

This commit is contained in:
Jordan Dominion
2024-08-16 20:49:32 -04:00
parent 8bad0cd2fe
commit 18893bfe4e
+2 -2
View File
@@ -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