From 233f93021ec7e40d327b47def91396ec05c69687 Mon Sep 17 00:00:00 2001 From: Hugo Gruson Date: Wed, 16 Mar 2022 19:37:16 +0100 Subject: [PATCH] Remove rebase-comment action --- .github/workflows/rebase-comment.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/rebase-comment.yaml diff --git a/.github/workflows/rebase-comment.yaml b/.github/workflows/rebase-comment.yaml deleted file mode 100644 index f9de827b5..000000000 --- a/.github/workflows/rebase-comment.yaml +++ /dev/null @@ -1,19 +0,0 @@ -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.API_TOKEN_GITHUB }} - fetch-depth: 0 # otherwise, you will fail to push refs to dest repo - - name: Automatic Rebase - uses: cirrus-actions/rebase@1.5 - env: - GITHUB_TOKEN: ${{ secrets.API_TOKEN_GITHUB }}