Skip to content

Commit c5fa797

Browse files
authored
Fix GH PAT scope (#1272)
Signed-off-by: willdavsmith <[email protected]>
1 parent 855cfd1 commit c5fa797

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: .github/workflows/upmerge.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ jobs:
5858
# branch is assumed to be the current release branch, but could be any branch.
5959
# If there are no changes, stop the workflow.
6060
- name: Upmerge docs
61+
env:
62+
GITHUB_TOKEN: ${{ secrets.GH_RAD_CI_BOT_PAT }}
6163
run: |
6264
export SOURCE_BRANCH=$(basename ${{ github.ref }})
6365
echo "Upmerging docs from $SOURCE_BRANCH to edge"
@@ -78,5 +80,5 @@ jobs:
7880
- name: Create pull request
7981
if: env.NO_CHANGES != 'true'
8082
env:
81-
GITHUB_TOKEN: ${{ secrets.GH_RAD_CI_BOT_PAT}}
83+
GITHUB_TOKEN: ${{ secrets.GH_RAD_CI_BOT_PAT }}
8284
run: gh pr create --title "Upmerge to edge" --body "Upmerge to edge (kicked off by @${{ github.triggering_actor }})" --base edge --head $BRANCH_NAME

0 commit comments

Comments
 (0)