From ab9506895a13e996424b5373e2766cdf8cf23463 Mon Sep 17 00:00:00 2001 From: Dominion Date: Sat, 29 Apr 2023 11:49:54 -0400 Subject: [PATCH] Fix typo and incorrect conditional in start-ci-run-gate if expression. --- .github/workflows/ci-suite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index a1f111c9ff..4456f2f71e 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -54,7 +54,7 @@ jobs: name: Start CI Run Gate needs: security-checkpoint runs-on: ubuntu-latest - if: always() && (needs.security-check.result == 'success' || needs.security-check.result == 'skipped') + if: always() && (needs.security-checkpoint.result == 'success' || (needs.security-checkpoint.result == 'skipped' && (github.event_name == 'push' || github.pull_request.head.repo.id == github.repository.id))) steps: - name: GitHub Requires at Least One Step for a Job run: exit 0