Fork Sync #56
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: imzyb/MiSub | |
| 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 |