Skip to content

Scrape permits for the next two months #346

Scrape permits for the next two months

Scrape permits for the next two months #346

Workflow file for this run

name: Scrape permits for the next two months
on:
workflow_dispatch:
schedule:
- cron: '35 4 * * *'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Set up Puppeteer
run: PUPPETEER_PRODUCT=chrome deno run -A --unstable https://deno.land/x/puppeteer@16.2.0/install.ts
- name: Scrape
run: deno run -A ./scrape.ts
- name: Commit and push if it changed
run: |-
git config user.name "Automated"
git config user.email "actions@users.noreply.github.com"
git pull
git add permits.json
timestamp=$(date -u)
git commit -m "Latest data: ${timestamp}" || exit 0
git push