mirror of
https://github.com/iptv-org/epg
synced 2025-12-16 02:16:40 -05:00
Merge branch 'master' of https://github.com/iptv-org/epg
This commit is contained in:
19
.github/workflows/auto-update.yml
vendored
Normal file
19
.github/workflows/auto-update.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
name: auto-update
|
||||
on:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
update-guide:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Update Guide
|
||||
run: ./run.sh
|
||||
- name: Commit Changes
|
||||
run: |
|
||||
git config user.name github-actions
|
||||
git config user.email github-actions@github.com
|
||||
git add .
|
||||
git diff-index --quiet HEAD || git commit -m "[Bot] Update Guide"
|
||||
git pull
|
||||
git push
|
||||
Reference in New Issue
Block a user