Update workflow
This commit is contained in:
parent
59aadaa3f3
commit
9ab1320ffa
36
.github/workflows/auto-update.yml
vendored
36
.github/workflows/auto-update.yml
vendored
@ -1,36 +0,0 @@
|
|||||||
name: auto-update
|
|
||||||
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 0 * * *'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
generate:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: "git checkout master"
|
|
||||||
run: git checkout master
|
|
||||||
|
|
||||||
- name: "npm install"
|
|
||||||
run: npm install
|
|
||||||
|
|
||||||
- name: "npm run format --epg"
|
|
||||||
run: npm run format --epg
|
|
||||||
|
|
||||||
- name: "npm run generate"
|
|
||||||
run: npm run generate
|
|
||||||
|
|
||||||
- name: "npm run update-readme"
|
|
||||||
run: npm run update-readme
|
|
||||||
|
|
||||||
- name: Create Pull Request
|
|
||||||
uses: peter-evans/create-pull-request@v1.5.1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
COMMIT_MESSAGE: 'Auto-update repository'
|
|
||||||
PULL_REQUEST_BRANCH: auto-update/patch
|
|
||||||
PULL_REQUEST_TITLE: '[Bot] Auto-update repository'
|
|
||||||
PULL_REQUEST_BODY: >
|
|
||||||
This pull request is auto-generated by auto-update action.
|
|
32
.github/workflows/format.yml
vendored
Normal file
32
.github/workflows/format.yml
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
name: Format Playlists
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
paths:
|
||||||
|
- 'channels/*'
|
||||||
|
- 'index.m3u'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
generate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: npm install
|
||||||
|
|
||||||
|
- name: Format Playlists
|
||||||
|
run: npm run format --epg
|
||||||
|
|
||||||
|
- name: Create Pull Request
|
||||||
|
uses: peter-evans/create-pull-request@v1.5.1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
COMMIT_MESSAGE: 'Format playlists'
|
||||||
|
PULL_REQUEST_BRANCH: bot-patch
|
||||||
|
PULL_REQUEST_TITLE: '[Bot] Format playlists'
|
||||||
|
PULL_REQUEST_BODY: >
|
||||||
|
This pull request is auto-generated by GitHub action.
|
21
.github/workflows/generate.yml
vendored
Normal file
21
.github/workflows/generate.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
name: Generate Playlists and Deploy
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
generate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Generate Playlists and Deploy
|
||||||
|
uses: JamesIves/github-pages-deploy-action@master
|
||||||
|
env:
|
||||||
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
||||||
|
BASE_BRANCH: master
|
||||||
|
BRANCH: gh-pages
|
||||||
|
FOLDER: .gh-pages
|
||||||
|
BUILD_SCRIPT: npm install && npm run generate
|
28
.github/workflows/update-readme.yml
vendored
Normal file
28
.github/workflows/update-readme.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
name: Update README.md
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
generate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: npm install
|
||||||
|
|
||||||
|
- name: Update README.md
|
||||||
|
run: npm run update-readme
|
||||||
|
|
||||||
|
- name: Create Pull Request
|
||||||
|
uses: peter-evans/create-pull-request@v1.5.1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
COMMIT_MESSAGE: 'Update README.md'
|
||||||
|
PULL_REQUEST_BRANCH: bot-patch
|
||||||
|
PULL_REQUEST_TITLE: '[Bot] Update README.md'
|
||||||
|
PULL_REQUEST_BODY: >
|
||||||
|
This pull request is auto-generated by GitHub action.
|
Loading…
x
Reference in New Issue
Block a user