From 2bb8b911a6faa5c4f9f2867f64e7df21a2d5d380 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Tue, 5 Nov 2024 15:29:09 +0200 Subject: [PATCH] Create rebase.yml --- .github/workflows/rebase.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/rebase.yml diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml new file mode 100644 index 00000000..d7c97e8b --- /dev/null +++ b/.github/workflows/rebase.yml @@ -0,0 +1,27 @@ +name: Automatic Rebase + +on: + issue_comment: + types: [created] + +permissions: + pull-requests: write + contents: write + +jobs: + rebase: + name: Rebase + runs-on: ubuntu-latest + if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase') + steps: + - name: Checkout the latest code + uses: actions/checkout@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + fetch-depth: 0 # otherwise, you will fail to push refs to dest repo + - name: Automatic Rebase + uses: cirrus-actions/rebase@1.7 + with: + autosquash: ${{ startsWith(github.event.comment.body, '/rebase-squash') }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}