From 7195a7d448407aac82319a2690dd7d55b7329b14 Mon Sep 17 00:00:00 2001 From: Sammy Date: Thu, 13 Jun 2024 11:50:44 +0200 Subject: [PATCH] chore: add ff-merge workflow --- .github/workflows/ff-merge.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ff-merge.yml diff --git a/.github/workflows/ff-merge.yml b/.github/workflows/ff-merge.yml new file mode 100644 index 0000000..89b545c --- /dev/null +++ b/.github/workflows/ff-merge.yml @@ -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