Scheduled fetch #10012
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: Scheduled fetch | |
on: | |
schedule: | |
# 毎時10分に実行 (UTC=JST-9) | |
- cron: '10 * * * *' | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: fetch | |
run: | | |
deno run -A makeData.js | |
- name: commit and push | |
run: | | |
git config --global user.email "workflow@example.com" | |
git config --global user.name "workflow user" | |
git add . | |
git commit -m 'update data' && git push ${REPO} HEAD:${{github.event.pull_request.head.ref}} || true | |
git push |