From b4278115f5ae1efd7831cd488968fb1ff09f19c8 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Fri, 26 Jul 2024 00:33:41 +0800 Subject: [PATCH 1/2] Create a rebase bot --- .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 0000000000..0e9fe1f4f8 --- /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-autosquash') }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From d7593e8eb6ac3f312b495053a979706732027acf Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Fri, 26 Jul 2024 00:34:35 +0800 Subject: [PATCH 2/2] Update rebase.yml --- .github/workflows/rebase.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index 0e9fe1f4f8..d7c97e8b25 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -22,6 +22,6 @@ jobs: - name: Automatic Rebase uses: cirrus-actions/rebase@1.7 with: - autosquash: ${{ startsWith(github.event.comment.body, '/rebase-autosquash') }} + autosquash: ${{ startsWith(github.event.comment.body, '/rebase-squash') }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}