We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99fdcf8 commit 6544822Copy full SHA for 6544822
.github/workflows/promote-shipped-apis.yml
@@ -17,6 +17,7 @@ jobs:
17
uses: actions/checkout@v6
18
with:
19
fetch-depth: 0
20
+ token: ${{ steps.app-token.outputs.token }}
21
22
- name: Generate GitHub App token
23
id: app-token
@@ -32,7 +33,7 @@ jobs:
32
33
run: |
34
git config --global user.name "github-actions[bot]"
35
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- git config --global url."https://x-access-token:$env:GH_TOKEN@github.com/".insteadOf "https://github.com/"
36
+ git config --global url."https://$($env:GH_TOKEN)@github.com/".insteadOf "https://github.com/"
37
38
- name: Check for existing PR
39
id: check_pr
0 commit comments