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: jobs:
sync: sync:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
contents: write
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
token: ${{ secrets.PAT_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
- name: Sync branches - name: Sync branches
run: | run: |