From 12daca6674cb5254edc27d62dc160586fda4b20a Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 24 Jul 2022 13:32:56 +0100 Subject: [PATCH] Adds action for easier rebasing of PRs --- .github/workflows/rebase-pr.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/rebase-pr.yml diff --git a/.github/workflows/rebase-pr.yml b/.github/workflows/rebase-pr.yml new file mode 100644 index 0000000..cffb06f --- /dev/null +++ b/.github/workflows/rebase-pr.yml @@ -0,0 +1,28 @@ +# Rebase a pull request, triggered by comment containing `/rebase` +name: ⏩ Rebase PR +on: + issue_comment: + types: [created] +jobs: + rebase: + name: Rebase + if: >- + github.event.issue.pull_request != '' && + ( + contains(github.event.comment.body, '/rebase') || + contains(github.event.comment.body, '/autosquash') + ) + runs-on: ubuntu-latest + steps: + - name: Checkout the latest code + uses: actions/checkout@v2 + with: + token: ${{ secrets.BOT_GITHUB_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: ${{ contains(github.event.comment.body, '/autosquash') || contains(github.event.comment.body, '/rebase-autosquash') }} + env: + GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} +