mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-29 21:24:04 +00:00
github: Fix automated PR creation for backports
GitHub Actions stores the token used for checking out a git repo in the git configuration and then uses that token for pushes from that repo too. We need to use a different token for push because we are pushing to the llvmbot/llvm-project repo and not the upstream repo, so we need to disable persist-credentials when checking out the source.
This commit is contained in:
parent
c6f0940d99
commit
9bbe44fb9d
4
.github/workflows/issue-release-workflow.yml
vendored
4
.github/workflows/issue-release-workflow.yml
vendored
@ -36,6 +36,10 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: llvm/llvm-project
|
||||
# GitHub stores the token used for checkout and uses it for pushes
|
||||
# too, but we want to use a different token for pushing, so we need
|
||||
# to disable persist-credentials here.
|
||||
persist-credentials: false
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Environment
|
||||
|
Loading…
x
Reference in New Issue
Block a user