Skip to content

Scrape latest data #11245

Scrape latest data

Scrape latest data #11245

Workflow file for this run

name: Scrape latest data
on:
push:
workflow_dispatch:
schedule:
- cron: '06 07-18 * * *'
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Fetch latest data
run: |-
curl "https://data.nola.gov/api/id/2jgv-pqrq.json?\$order=date_created+DESC" | jq . > 311calls.json
curl "https://data.nola.gov/api/id/2jgv-pqrq.json?request_reason=Pothole&\$order=date_created+DESC" | jq . > potholes.json
- name: Commit and push if it changed
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