Use PAT_TOKEN for rebase (#1512)

This commit is contained in:
ligi 2022-08-28 17:48:54 +02:00 committed by GitHub
parent 02a3e91b01
commit 4430d311d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,14 +13,12 @@ jobs:
contains(github.event.comment.body, '/autosquash') contains(github.event.comment.body, '/autosquash')
) )
steps: steps:
- name: Checkout the latest code - name: Checkout the latest code
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
token: ${{ secrets.WORKFLOW_TOKEN }} token: ${{ secrets.PAT_TOKEN }}
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
- name: Automatic Rebase - name: Automatic Rebase
uses: cirrus-actions/rebase@1.7 uses: cirrus-actions/rebase@1.5
with: env:
autosquash: ${{ contains(github.event.comment.body, '/autosquash') || contains(github.event.comment.body, '/rebase-autosquash') }} GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}