This repository has been archived by the owner on Aug 15, 2023. It is now read-only.
Update material.json in dev branch #326
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update material.json in dev branch | |
on: | |
workflow_dispatch: null | |
schedule: | |
# UTC | |
- cron: "0 20 * * *" | |
jobs: | |
material_update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: dev | |
- name: Install node modules | |
run: npm install | |
- name: Update material.json | |
run: npm run tool-material | |
- name: Config git | |
run: | | |
git config user.name 'github-actions' | |
git config user.email '[email protected]' | |
- name: Commit and push | |
run: | | |
if [[ -n $(git status --porcelain) ]] | |
then | |
git add . | |
git commit -m 'Update material.json' | |
git push | |
else | |
echo "Nothing to commit." | |
fi |