Renamee publish.yml to update.yml
This commit is contained in:
parent
0640846665
commit
302cd5239a
|
@ -1,12 +1,10 @@
|
||||||
name: Publish playlists
|
name: update
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 1 * * *'
|
- cron: '0 1 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
generate:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -40,11 +38,11 @@ jobs:
|
||||||
|
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
uses: peter-evans/create-pull-request@v3
|
uses: peter-evans/create-pull-request@v3
|
||||||
env:
|
with:
|
||||||
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }}
|
token: ${{ secrets.REPO_SCOPED_TOKEN }}
|
||||||
COMMIT_MESSAGE: 'Update README.md'
|
commit-message: 'Update README.md'
|
||||||
PULL_REQUEST_BRANCH: bot-patch
|
branch: bot-patch
|
||||||
PULL_REQUEST_TITLE: '[Bot] Update README.md'
|
title: '[Bot] Update README.md'
|
||||||
PULL_REQUEST_LABELS: automerge
|
labels: automerge
|
||||||
PULL_REQUEST_BODY: >
|
body: |
|
||||||
This pull request is auto-generated by GitHub action.
|
This pull request is auto-generated by GitHub action.
|
Loading…
Reference in New Issue