Skip to content

Scrape latest data #49145

Scrape latest data

Scrape latest data #49145

Workflow file for this run

name: Scrape latest data
on:
push:
workflow_dispatch:
schedule:
# At minute 7, 27, and 47.
- cron: "7,27,47 * * * *"
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v4
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Fetch latest data
run: |-
deno run --allow-all bmkg_felt.ts
- 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