From c7c8a98b608a29c0826d98db99c1cdb6960208b2 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 31 Jul 2022 22:47:18 +0100 Subject: [PATCH] Delete rebase-pr.yml --- .github/workflows/rebase-pr.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/rebase-pr.yml diff --git a/.github/workflows/rebase-pr.yml b/.github/workflows/rebase-pr.yml deleted file mode 100644 index cffb06f..0000000 --- a/.github/workflows/rebase-pr.yml +++ /dev/null @@ -1,28 +0,0 @@ -# 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 }} -