From 7a0b5a472be4632a29abc48939382ab594572bfa Mon Sep 17 00:00:00 2001 From: Manabu McCloskey Date: Wed, 27 Nov 2024 09:57:05 -0800 Subject: [PATCH] Update e2e.yaml --- .github/workflows/e2e.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 6aab24c2..043a60e0 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -13,7 +13,7 @@ on: jobs: e2e: runs-on: ubuntu-22.04 - if: ${{ ! github.event.action == e2e-command }} + if: ${{ ! github.event.action == "e2e-command" }} steps: - name: Output command and arguments run: | @@ -31,7 +31,7 @@ jobs: # invoked by slash command workflow e2e-slash-command: runs-on: ubuntu-22.04 - if: ${{ github.event.action == e2e-command }} + if: ${{ github.event.action == "e2e-command" }} steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: