Skip to content

Commit 20419b9

Browse files
committed
fix: update authentication token in bump workflow to use CI_USER_GIT_TOKEN
1 parent f6bede3 commit 20419b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/bump-gitstream-core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v6
3434
with:
35-
token: ${{ secrets.CI_ACCOUNT_PAT }}
35+
token: ${{ secrets.CI_USER_GIT_TOKEN }}
3636

3737
- name: Set version to ENV
3838
run: |
@@ -64,7 +64,7 @@ jobs:
6464
- name: Create PR for ${{ env.VERSION }}
6565
id: create-pr
6666
env:
67-
GH_TOKEN: ${{ secrets.CI_ACCOUNT_PAT }}
67+
GH_TOKEN: ${{ secrets.CI_USER_GIT_TOKEN }}
6868
run: |
6969
echo -e "${{ inputs.description }}" > pr_description.txt
7070
git config --global user.name 'GitHub Actions Bot'

0 commit comments

Comments
 (0)