From e92f3db1ff7b8c507ae162e3455a68770f5e8089 Mon Sep 17 00:00:00 2001 From: Graham Whaley Date: Fri, 6 Mar 2020 15:37:23 +0000 Subject: [PATCH] actions: change trigger phrase for kata-deploy action Let's change the kata-deploy github action trigger from: '/test kata-deploy' to '/test-kata-deploy' which will hopefully reduce the number of false triggers caused when we issue the 'normal' CI runs that are triggered by other '/test xxxx' phrases. Fixes: #971 Signed-off-by: Graham Whaley --- .github/workflows/kata-deploy-test.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/kata-deploy-test.yaml b/.github/workflows/kata-deploy-test.yaml index c5ec4ad8f..848f76352 100644 --- a/.github/workflows/kata-deploy-test.yaml +++ b/.github/workflows/kata-deploy-test.yaml @@ -9,7 +9,7 @@ jobs: uses: kata-containers/slash-command-action@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - command: "test" + command: "test-kata-deploy" reaction: "true" reaction-type: "eyes" allow-edits: "false" @@ -17,7 +17,6 @@ jobs: - name: verify command arg is kata-deploy run: | echo "The command was '${{ steps.command.outputs.command-name }}' with arguments '${{ steps.command.outputs.command-arguments }}'" - [[ ${{ steps.command.outputs.command-arguments}} == "kata-deploy" ]] create-and-test-container: needs: check_comments runs-on: ubuntu-latest