From 4430d311d92a1c2138ce77e6062fc6de6e6a5b9c Mon Sep 17 00:00:00 2001 From: ligi Date: Sun, 28 Aug 2022 17:48:54 +0200 Subject: [PATCH] Use PAT_TOKEN for rebase (#1512) --- .github/workflows/rebase.yml | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) 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