epg.yml 525 B

1234567891011121314151617181920212223
  1. name: EPG Update
  2. on:
  3. schedule:
  4. - cron: '0 */3 * * *' # 每3个小时执行一次
  5. workflow_dispatch: # 手动触发
  6. jobs:
  7. build:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v3
  11. - name: EPG Update
  12. run: |
  13. rm -f e.xml && wget https://epg.112114.xyz/pp.xml -O e.xml
  14. git config --global user.name vbskycn
  15. git config --global user.email 88164962@qq.com
  16. git add e.xml
  17. git commit -m "Update e.xml"
  18. git push -f origin master