From a3770d872708d7f28a1f834d31baa142f1f11ea4 Mon Sep 17 00:00:00 2001 From: Doug Smith Date: Thu, 29 Jun 2023 14:25:11 -0400 Subject: [PATCH] chore(ci): remove /ci-run-install comment trigger (#17803) --- .github/workflows/comment-trigger.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/comment-trigger.yml b/.github/workflows/comment-trigger.yml index 7be887247ce73..84cabd825ccf3 100644 --- a/.github/workflows/comment-trigger.yml +++ b/.github/workflows/comment-trigger.yml @@ -14,7 +14,6 @@ # /ci-run-unit-mac : runs Unit - Mac # /ci-run-unit-windows : runs Unit - Windows # /ci-run-environment : runs Environment Suite -# /ci-run-install : runs Update install.sh Suite # /ci-run-regression : runs Regression Detection Suite name: Comment Trigger @@ -55,7 +54,6 @@ jobs: || contains(github.event.comment.body, '/ci-run-unit-mac') || contains(github.event.comment.body, '/ci-run-unit-windows') || contains(github.event.comment.body, '/ci-run-environment') - || contains(github.event.comment.body, '/ci-run-install') || contains(github.event.comment.body, '/ci-run-regression') ) steps: @@ -113,12 +111,6 @@ jobs: uses: ./.github/workflows/environment.yml secrets: inherit - install: - needs: validate - if: contains(github.event.comment.body, '/ci-run-all') || contains(github.event.comment.body, '/ci-run-install') - uses: ./.github/workflows/install-sh.yml - secrets: inherit - regression: needs: validate if: contains(github.event.comment.body, '/ci-run-all') || contains(github.event.comment.body, '/ci-run-regression')