You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iptv/.github/workflows/format.yml

33 lines
760 B
YAML

5 years ago
name: Format Playlists
on:
push:
branches:
- master
paths:
- 'channels/*'
jobs:
format:
5 years ago
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Dependencies
run: npm install
- name: Format Playlists
run: npm run format
5 years ago
- name: Create Pull Request
uses: peter-evans/create-pull-request@v1.6.0
5 years ago
env:
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }}
COMMIT_MESSAGE: 'Formatted playlists'
5 years ago
PULL_REQUEST_BRANCH: bot-patch
PULL_REQUEST_TITLE: '[Bot] Format playlists'
PULL_REQUEST_LABELS: automerge
5 years ago
PULL_REQUEST_BODY: >
This pull request is auto-generated by GitHub action.