37 lines
932 B
YAML
37 lines
932 B
YAML
name: Format Playlists
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'channels/*'
|
|
|
|
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
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v1.6.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
COMMIT_MESSAGE: 'Formatted playlists'
|
|
PULL_REQUEST_BRANCH: bot-patch
|
|
PULL_REQUEST_TITLE: '[Bot] Format playlists'
|
|
PULL_REQUEST_LABELS: automerge
|
|
PULL_REQUEST_BODY: >
|
|
This pull request is auto-generated by GitHub action.
|
|
- name: Automerge Pull Request
|
|
uses: pascalgn/automerge-action@f84dd310ea4a19890c70a4ff11ab282a872fb94b
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|