Remove extra steps
This commit is contained in:
parent
7e0019e879
commit
cec5581a83
|
@ -13,27 +13,16 @@ jobs:
|
|||
run: npm install
|
||||
- name: Format Playlists
|
||||
run: node scripts/format.js
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v3
|
||||
with:
|
||||
token: ${{ secrets.REPO_SCOPED_TOKEN }}
|
||||
commit-message: 'Format playlists'
|
||||
branch: bot-patch
|
||||
title: '[Bot] Format playlists'
|
||||
labels: automerge
|
||||
body: |
|
||||
This pull request is auto-generated by GitHub action.
|
||||
merge-format:
|
||||
runs-on: ubuntu-latest
|
||||
needs: format
|
||||
steps:
|
||||
- name: Merge Pull Request
|
||||
uses: 'pascalgn/automerge-action@v0.13.0'
|
||||
env:
|
||||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
|
||||
- name: Commit Changes
|
||||
run: |
|
||||
git config user.name github-actions
|
||||
git config user.email github-actions@github.com
|
||||
git add .
|
||||
git commit -m "[Bot] Format playlists"
|
||||
git push
|
||||
generate:
|
||||
runs-on: ubuntu-latest
|
||||
needs: merge-format
|
||||
needs: format
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -58,21 +47,10 @@ jobs:
|
|||
run: npm install
|
||||
- name: Update README.md
|
||||
run: node scripts/update-readme.js
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v3
|
||||
with:
|
||||
token: ${{ secrets.REPO_SCOPED_TOKEN }}
|
||||
commit-message: 'Update README.md'
|
||||
branch: bot-patch
|
||||
title: '[Bot] Update README.md'
|
||||
labels: automerge
|
||||
body: |
|
||||
This pull request is auto-generated by GitHub action.
|
||||
merge-readme:
|
||||
runs-on: ubuntu-latest
|
||||
needs: update-readme
|
||||
steps:
|
||||
- name: Merge Pull Request
|
||||
uses: 'pascalgn/automerge-action@v0.13.0'
|
||||
env:
|
||||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
|
||||
- name: Commit Changes
|
||||
run: |
|
||||
git config user.name github-actions
|
||||
git config user.email github-actions@github.com
|
||||
git add .
|
||||
git commit -m "[Bot] Update README.md"
|
||||
git push
|
||||
|
|
Loading…
Reference in New Issue