Skip to content

Commit 87d03d0

Browse files
committed
fix: use CI_ACCOUNT_PAT instead of CI_USER_GIT_TOKEN
1 parent 452d967 commit 87d03d0

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_USER_GIT_TOKEN }}
35+
token: ${{ secrets.CI_ACCOUNT_PAT }}
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_USER_GIT_TOKEN }}
67+
GH_TOKEN: ${{ secrets.CI_ACCOUNT_PAT }}
6868
run: |
6969
echo -e "${{ inputs.description }}" > pr_description.txt
7070
git config --global user.name 'GitHub Actions Bot'

0 commit comments

Comments
 (0)