workflows: Use correct access token when pushing to llvm-project-release-prs repo

The checkout action will hard-code the default github actions token in
the git config so that all pushes use it.  We need to set
persist-credentials=false so we can use a token that has permission
to push to the llvm-project-release-prs repo.
This commit is contained in:
Tom Stellard 2022-07-27 20:13:21 -07:00
parent dbda30e294
commit b1dace63b1
1 changed files with 2 additions and 0 deletions

View File

@ -72,6 +72,8 @@ jobs:
steps:
- name: Fetch LLVM sources
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Environment
run: |