Merge pull request #262 from XiaoMiku01/main

add auto sync fork action daily
This commit is contained in:
Yifei Zhang 2023-03-31 11:19:50 +08:00 committed by GitHub
commit 35a402c67e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 # 需要同步到本项目的目标分支