From 23b5f0cb4aeac4946818fdaab70ea6c4e615c717 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 21 Feb 2022 00:52:22 +0100 Subject: [PATCH] [ci skip] GitHub does now allow you to rebase PRs straight away --- .github/workflows/rebase.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/rebase.yml diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml deleted file mode 100644 index b4feba220..000000000 --- a/.github/workflows/rebase.yml +++ /dev/null @@ -1,20 +0,0 @@ -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 }}