Sync fork with upstream Repository #1665
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: Sync fork with upstream Repository | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 * * * *" | |
| permissions: | |
| contents: write | |
| packages: write | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Sync master via Fork-Sync action | |
| uses: aormsby/[email protected] | |
| with: | |
| target_sync_branch: master | |
| target_repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| upstream_sync_repo: iptv-org/epg | |
| upstream_sync_branch: master |