Skip to content

Commit 6be29fe

Browse files
authored
Fix Release Pipeline (#4484)
1 parent 5ee470c commit 6be29fe

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
with:
6464
version: ${{ needs.release.outputs.version }}
6565
secrets:
66-
AARON_MAXWELL_TOKEN: ${{ secrets.AARON_MAXWELL_TOKEN }}
66+
PERSONAL_ACCESS_TOKEN: ${{ secrets.XIANG17_TOKEN }}
6767

6868
create-version-bump-pull-request:
6969
permissions: write-all

.github/workflows/reusable-create-docs-pull-request.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
type: string
88
required: true
99
secrets:
10-
AARON_MAXWELL_TOKEN:
10+
PERSONAL_ACCESS_TOKEN:
1111
required: true
1212
# to help with partial release build failures
1313
workflow_dispatch:
@@ -27,16 +27,16 @@ jobs:
2727
env:
2828
VERSION: ${{ inputs.version }}
2929
# this is the personal access token used for "gh repo sync" below
30-
GH_TOKEN: ${{ secrets.AARON_MAXWELL_TOKEN }}
30+
GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
3131
run: |
32-
gh repo sync AaronMaxwell/azure-monitor-docs-pr \
32+
gh repo sync xiang17/azure-monitor-docs-pr \
3333
--source MicrosoftDocs/azure-monitor-docs-pr
3434
3535
- uses: actions/checkout@v5
3636
with:
37-
repository: AaronMaxwell/azure-monitor-docs-pr
37+
repository: xiang17/azure-monitor-docs-pr
3838
# this is the personal access token used for "git push" below
39-
token: ${{ secrets.AARON_MAXWELL_TOKEN }}
39+
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
4040

4141
- name: Update version in docs
4242
env:
@@ -54,12 +54,12 @@ jobs:
5454
env:
5555
VERSION: ${{ inputs.version }}
5656
# this is the personal access token used for "gh pr create" below
57-
GH_TOKEN: ${{ secrets.AARON_MAXWELL_TOKEN }}
57+
GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
5858
run: |
5959
message="Update the applicationinsights-java version to $VERSION"
6060
body="Update the applicationinsights-java version to \`$VERSION\`.
6161
62-
cc @AaronMaxwell @heyams @jeanbisutti @mattmccleary @trask
62+
cc @harsimar @jeanbisutti @mattmccleary @rajkumar-rangaraj @trask @xiang17
6363
"
6464
branch="update-applicationinsights-java-to-${VERSION}"
6565
@@ -76,7 +76,7 @@ jobs:
7676
7777
echo ========================================
7878
echo To create PR, go to
79-
echo https://github.com/MicrosoftDocs/azure-monitor-docs-pr/compare/main...AaronMaxwell:azure-docs-pr:${branch}?expand=1
79+
echo https://github.com/MicrosoftDocs/azure-monitor-docs-pr/compare/main...xiang17:azure-docs-pr:${branch}?expand=1
8080
echo ========================================
8181
8282
# TODO (trask) create PR automatically

0 commit comments

Comments
 (0)