From 30c2597aad7235129819c8d9ef76b47d108f615f Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Tue, 4 Jan 2022 20:33:43 +0100 Subject: [PATCH] ci: dordsor does love rebasing here too --- .github/workflows/rebase.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 000000000..b4feba220 --- /dev/null +++ b/.github/workflows/rebase.yml @@ -0,0 +1,20 @@ +name: Rebase Pull Request +on: + issue_comment: + types: [created] + +jobs: + rebase: + name: Rebase + if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') && github.event.comment.author_association == 'MEMBER' + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v2.4.0 + with: + token: ${{ secrets.REBASE_TOKEN }} + fetch-depth: 0 + - name: Automatic Rebase + uses: cirrus-actions/rebase@1.5 + env: + GITHUB_TOKEN: ${{ secrets.REBASE_TOKEN }}