Skip to content

Commit 840f1f5

Browse files
committed
(fix/oss): Fix 403 PAT issue
1 parent 2c653fb commit 840f1f5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/mirror.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: Mirror push to ScribbleLabApp-Community
17+
env:
18+
TOKEN: ${{ secrets.MIRROR_TOKEN }}
1719
run: |
1820
git config --global user.name "ScribbleCareBear CI"
1921
git config --global user.email "[email protected]"
2022
21-
git remote add mirror https://$GITHUB_ACTOR:${{ secrets.MIRROR_TOKEN }}@github.com/ScribbleLabApp-Community/ScribbleLabDocsKit.git
23+
git remote add mirror https://x-access-token:${{ secrets.MIRROR_TOKEN }}@github.com/ScribbleLabApp-Community/ScribbleLabDocsKit.git
2224
git push mirror --mirror

0 commit comments

Comments
 (0)