From 1ef1daf7d94af9b79a3d7034f50214bdbb1b6b6c Mon Sep 17 00:00:00 2001 From: web3-bot Date: Fri, 9 Apr 2021 03:50:04 +0000 Subject: [PATCH] remove the autorebase workflow --- .github/workflows/autorebase.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/autorebase.yml diff --git a/.github/workflows/autorebase.yml b/.github/workflows/autorebase.yml deleted file mode 100644 index 2b2fb2e..0000000 --- a/.github/workflows/autorebase.yml +++ /dev/null @@ -1,25 +0,0 @@ -# File managed by web3-bot. DO NOT EDIT. -# See https://github.com/protocol/.github/ for details. - -# Allow PRs opened by web3-bot to be rebased by commenting "@web3-bot rebase" on the PR. - -on: - issue_comment: - types: [ created ] - -name: Automatic Rebase -jobs: - rebase: - name: Rebase - if: github.event.issue.pull_request != '' && github.event.issue.user.login == 'web3-bot' && contains(github.event.comment.body, '@web3-bot rebase') - runs-on: ubuntu-latest - steps: - - name: Checkout the latest code - uses: actions/checkout@v2 - with: - fetch-depth: 0 - token: ${{ secrets.WEB3BOT_GITHUB_TOKEN }} - - name: Automatic Rebase - uses: cirrus-actions/rebase@7cea12ac34ab078fa37e87798d8986185afa7bf2 # v1.4 - env: - GITHUB_TOKEN: ${{ secrets.WEB3BOT_GITHUB_TOKEN }}