add auto sync fork action

This commit is contained in:
XiaoMiku01 2023-03-31 10:05:58 +08:00 committed by GitHub
parent 2f2e0b6762
commit be8a35063c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

16
.github/workflows/sync.yml vendored Normal file
View File

@ -0,0 +1,16 @@
# .github/workflows/sync.yml
name: Sync Fork
on:
schedule:
- cron: "0 8 * * *" # 每天0点触发
jobs:
repo-sync:
runs-on: ubuntu-latest
steps:
- uses: TG908/fork-sync@v1.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }} # 这个 token action 会默认配置, 这里只需这样写就行
owner: Yidadaa # fork 上游项目 owner
head: main # fork 上游项目需要同步的分支
base: main # 需要同步到本项目的目标分支