Generate initState #4
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: "Generate initState" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '6 9 4 * *' # Run monthly, | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: 'yarn' | |
- run: yarn | |
- run: make build | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'Generate initState.json cache' | |
commit_author: initState Updater <[email protected]> |