Skip to content

Scrape helicopter notifcations #261

Scrape helicopter notifcations

Scrape helicopter notifcations #261

Workflow file for this run

name: Scrape helicopter notifcations
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: Scrape
run: deno run --allow-read=notifications.json --allow-write=notifications.json --allow-net ./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 notifications.json
timestamp=$(date -u)
git commit -m "Latest data: ${timestamp}" || exit 0
git push