Sync IPTV #5288
This file contains 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 IPTV | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
jobs: | |
iptv: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Sync IPTV | |
run: node scripts/syncIptv.js | |
- name: Setup GitHub | |
run: | | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
- name: Submit data | |
run: | | |
git add . | |
git commit -m 'auto sync' | |
git push |