Skip to content

Instantly share code, notes, and snippets.

@mlavergn
Created November 6, 2020 16:01
Show Gist options
  • Save mlavergn/d75cbec2ac672f57e434bbf1c9214ecd to your computer and use it in GitHub Desktop.
Save mlavergn/d75cbec2ac672f57e434bbf1c9214ecd to your computer and use it in GitHub Desktop.
GitHub cron based jobs
name: Scrape latest data
on:
push:
workflow_dispatch:
schedule:
- cron: '6,26,46 * * * *'
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v2
- name: Fetch latest data
run: |-
curl https://www.fire.ca.gov/umbraco/Api/IncidentApi/GetIncidents | jq . > incidents.json
- name: Commit and push if it changed
run: |-
git config user.name "Automated"
git config user.email "actions@users.noreply.github.com"
git add -A
timestamp=$(date -u)
git commit -m "Latest data: ${timestamp}" || exit 0
git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment