diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index 6c6b38c5..91095ec3 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -13,14 +13,12 @@ jobs: contains(github.event.comment.body, '/autosquash') ) steps: - - name: Checkout the latest code - uses: actions/checkout@v2 - with: - token: ${{ secrets.WORKFLOW_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.WORKFLOW_TOKEN }} \ No newline at end of file + - name: Checkout the latest code + uses: actions/checkout@v2 + with: + token: ${{ secrets.PAT_TOKEN }} + 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.PAT_TOKEN }} \ No newline at end of file