Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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/Fork-Sync-With-Upstream-action@v3.4
with:
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
upstream_sync_repo: mtvpls/MoonTVPlus
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