From 9fa21fb481d3b4ca4fc2f021890478935f9dc039 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tina=20M=C3=BCller?= Date: Tue, 14 Sep 2021 01:49:37 +0200 Subject: [PATCH] Add Automatic Rebase Action See https://github.com/marketplace/actions/automatic-rebase --- .github/workflows/rebase.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/rebase.yaml diff --git a/.github/workflows/rebase.yaml b/.github/workflows/rebase.yaml new file mode 100644 index 00000000..2aa85892 --- /dev/null +++ b/.github/workflows/rebase.yaml @@ -0,0 +1,21 @@ +name: Automatic Rebase +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 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.4 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}