diff --git a/.github/workflows/fast-forward.yml b/.github/workflows/fast-forward.yml index ec7f833..947cfde 100644 --- a/.github/workflows/fast-forward.yml +++ b/.github/workflows/fast-forward.yml @@ -2,12 +2,16 @@ name: fast-forward for PR # GitHub doesn't support fast-forward merge of PR, # which causes GPG signatures overriden by GitHub's key. # This workflow allows maintainers to do a fast-forward merge -# by replying `/fast-forward` to the PR. +# by replying anything containing `/fast-forward` to the PR. # # Contributors must first rebase onto the latest commit before PR to make fast-forward possible. on: + # issue / PR comment issue_comment: types: [created, edited] + # PR comment in review + pull_request_review_comment: + types: [created, edited] jobs: fast-forward: if: ${{ contains(github.event.comment.body, '/fast-forward')