From 046ba4df7f7c779ea63ca1a47c9203bb32bc93fb Mon Sep 17 00:00:00 2001 From: Snir Sheriber Date: Tue, 31 May 2022 15:28:05 +0300 Subject: [PATCH] workflows: add workflow_dispatch triggering to test-kata-deploy This will allow to trigger the test-kata-deploy workflow manually from any branch instead of using always the one that is defined on main See: https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/ Fixes: #4349 Signed-off-by: Snir Sheriber --- .github/workflows/kata-deploy-test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/kata-deploy-test.yaml b/.github/workflows/kata-deploy-test.yaml index c0a9b98b38..a623900992 100644 --- a/.github/workflows/kata-deploy-test.yaml +++ b/.github/workflows/kata-deploy-test.yaml @@ -1,4 +1,5 @@ on: + workflow_dispatch: # this is used to trigger the workflow on non-main branches issue_comment: types: [created, edited]