chore: add ff-merge workflow

This commit is contained in:
Sammy 2024-06-13 11:45:48 +02:00
parent 519f9b99c1
commit 056b896083
No known key found for this signature in database
GPG key ID: C99355AC01BC7575

22
.github/workflows/ff-merge.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: fast-forward
on:
issue_comment:
types: [created, edited]
jobs:
fast-forward:
# Only run if the comment contains the /fast-forward command.
if: ${{ contains(github.event.comment.body, '/fast-forward')
&& github.event.issue.pull_request }}
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
issues: write
steps:
- name: Fast forwarding
uses: sequoia-pgp/fast-forward@v1
with:
merge: true
comment: on-error