fix: use GITHUB_TOKEN instead of PAT_TOKEN for branch sync

This commit is contained in:
2026-02-19 06:21:26 +03:00
parent ae0dac0a11
commit 8a5681db33
+3 -1
View File
@@ -9,12 +9,14 @@ on:
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.PAT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Sync branches
run: |