Skip to content

Collect Realtime Facility Status #1

Collect Realtime Facility Status

Collect Realtime Facility Status #1

name: Collect Realtime Facility Status
on:
schedule:
- cron: '*/5 * * * *'
workflow_dispatch:
permissions:
contents: write
jobs:
collect:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: scripts/package.json
- name: Install dependencies
run: npm ci
working-directory: scripts
- name: Collect all realtime facilities
env:
SEOUL_API_KEY: ${{ secrets.SEOUL_API_KEY }}
run: node collect.js --all-realtime
working-directory: scripts
- name: Build latest.json
run: node build-latest.js
working-directory: scripts
- name: Commit data
uses: stefanzweifel/git-auto-commit-action@b863ae1933cb653a53c021fe36dbb774e1fb9403 # v5
with:
commit_message: 'chore: collect realtime data'
file_pattern: 'data/** web/public/data/**'