From 65fee617bb35f04b87c1a9c1e05ac06155a9834d Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Mon, 3 Jul 2023 14:17:02 -0400 Subject: [PATCH] Rename the CI gates a bit --- .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 c60e85e07f..07b19f07b5 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -70,7 +70,7 @@ jobs: run: exit 1 start-ci-run-gate: - name: Start CI Run Gate + name: CI Start Gate needs: security-checkpoint runs-on: ubuntu-latest if: "!(cancelled() || failure()) && (needs.security-checkpoint.result == 'success' || (needs.security-checkpoint.result == 'skipped' && (github.event_name == 'push' || github.event_name == 'schedule' || (github.event.pull_request.head.repo.id == github.event.pull_request.base.repo.id && github.event_name != 'pull_request_target'))))" @@ -1166,7 +1166,7 @@ jobs: run: exit 0 deployment-gate: - name: Deployment Gate + name: Deployment Start Gate needs: ci-completion-gate runs-on: ubuntu-latest if: "!(cancelled() || failure()) && needs.ci-completion-gate.result == 'success' && github.event_name == 'push'"