forked from huangxd-/danmu_api
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 1.38 KB
/
Copy pathsync_fork.yml
File metadata and controls
44 lines (37 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Fork Sync
permissions:
contents: write
on:
schedule:
- cron: "0 0 * * *" # 每天午夜执行
workflow_dispatch: # 允许手动触发
jobs:
sync_with_upstream:
name: Sync with Upstream
runs-on: ubuntu-latest
if: ${{ github.event.repository.fork }}
steps:
- name: Checkout target repo
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Sync Upstream
uses: aormsby/[email protected]
with:
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
upstream_sync_repo: huangxd-/danmu_api
upstream_sync_branch: main
target_sync_branch: main
test_mode: false
- name: Check for new commits
if: success()
run: echo "Sync completed successfully"
- name: Check for Failure
if: failure()
run: |
echo "[Error] Sync failed. This might be due to:"
echo "1. Changes in the upstream workflow file"
echo "2. Merge conflicts that need manual resolution"
echo "3. Network issues"
echo "Please check the logs and consider manual sync if needed."
exit 1