From 89addced4d261fbb84170305440186f272faa101 Mon Sep 17 00:00:00 2001 From: "Yunkon (Alvin) Kim" Date: Fri, 19 Feb 2021 13:10:57 +0900 Subject: [PATCH] Trigger pull_request_review_comment on the prow-commands workflow - Add pull_request_review_comment event - Add types `edited` on both issue_comment and pull_request_review_comment event --- .github/workflows/prow-commands.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/prow-commands.yml b/.github/workflows/prow-commands.yml index 068397d02..549ab4271 100644 --- a/.github/workflows/prow-commands.yml +++ b/.github/workflows/prow-commands.yml @@ -4,7 +4,9 @@ name: "action by command-style comments" # Event on a comment (in issue and PR) on: issue_comment: - types: [created] + types: [ created, edited ] + pull_request_review_comment: + types: [ created, edited ] jobs: execute: