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: