Skip to content

Scrape

Scrape #173

Workflow file for this run

name: Scrape
on:
push:
schedule:
- cron: '10 7 * * *'
jobs:
scheduled:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Scrape
run: ./scrape.sh
- name: Commit
run: |-
git config user.name "Automated"
git config user.email "[email protected]"
git add -A
timestamp=$(date -u)
git commit -m "Latest data: ${timestamp}" || exit 0
git push