Update auto-update.yml

This commit is contained in:
Aleksandr Statciuk 2021-05-26 15:58:54 +03:00
parent 09fbf66414
commit 6ced93bcdb

View File

@ -4,33 +4,47 @@ on:
schedule: schedule:
- cron: '0 0 * * *' - cron: '0 0 * * *'
jobs: jobs:
update: remove-duplicates:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Update Config
run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Create Branch
run: |
git fetch --prune --unshallow
git checkout bot/auto-update || git checkout -b bot/auto-update
- name: Install Dependencies - name: Install Dependencies
run: npm install run: npm install
- name: Remove Duplicates - name: Remove Duplicates
run: node scripts/remove-duplicates.js run: node scripts/remove-duplicates.js
- name: Commit Changes - name: Upload Artifact
run: | uses: actions/upload-artifact@v2
git add channels/* with:
git diff-index --quiet HEAD || git commit -m "[Bot] Remove duplicates" name: channels
path: channels/
format:
runs-on: ubuntu-latest
needs: remove-duplicates
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download Artifacts
uses: actions/download-artifact@v2
- name: Install Dependencies
run: npm install
- name: Format Playlists - name: Format Playlists
run: node scripts/format.js run: node scripts/format.js
- name: Commit Changes - name: Upload Artifact
run: | uses: actions/upload-artifact@v2
git add channels/* with:
git diff-index --quiet HEAD || git commit -m "[Bot] Format playlists" name: channels
path: channels/
generate:
runs-on: ubuntu-latest
needs: format
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download Artifacts
uses: actions/download-artifact@v2
- name: Install Dependencies
run: npm install
- name: Generate Playlists - name: Generate Playlists
run: node scripts/generate.js run: node scripts/generate.js
- name: Deploy to GitHub Pages - name: Deploy to GitHub Pages
@ -38,21 +52,20 @@ jobs:
with: with:
branch: gh-pages branch: gh-pages
folder: .gh-pages folder: .gh-pages
update-readme:
runs-on: ubuntu-latest
needs: generate
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download Artifacts
uses: actions/download-artifact@v2
- name: Install Dependencies
run: npm install
- name: Update README.md - name: Update README.md
run: node scripts/update-readme.js run: node scripts/update-readme.js
- name: Commit Changes - name: Upload Artifact
run: | uses: actions/upload-artifact@v2
git add README.md
git diff-index --quiet HEAD || git commit -m "[Bot] Update README.md"
- name: Discard Uncommited Changes
run: |
git checkout -- .
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with: with:
title: '[Bot] Update Playlists' name: README.md
body: | path: README.md
This pull request is created automatically by `auto-update` action.
base: bot/auto-update
branch: bot/auto-update-pr
delete-branch: true