Skip to content

Scheduled fetch

Scheduled fetch #42

name: Scheduled fetch
on:
schedule:
# 毎日7:28分に実行 (UTC=JST-9)
- cron: '28 22 * * *'
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: |
cd src
deno run -A scrape.js
- name: commit and push
run: |
git config --global user.email "[email protected]"
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