From 1efbd1d16fc995f0ac31553ce1fde33ddc338a10 Mon Sep 17 00:00:00 2001 From: Ales Raszka Date: Fri, 24 Nov 2023 13:37:58 +0100 Subject: [PATCH] Add action for pipeline re-trigger The action reacts on PR comments and retrigger a pipeline if previous run failed. Signed-off-by: Ales Raszka --- .github/workflows/pr-label-command.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/pr-label-command.yml diff --git a/.github/workflows/pr-label-command.yml b/.github/workflows/pr-label-command.yml new file mode 100644 index 00000000000..ba7cd25fc3b --- /dev/null +++ b/.github/workflows/pr-label-command.yml @@ -0,0 +1,12 @@ +name: Github pull request labels + +on: + issue_comment: + types: [created, edited] + +permissions: + pull-requests: write + +jobs: + skip-test-labeler: + uses: redhat-openshift-ecosystem/github-workflows/.github/workflows/label-command.yml@main