Skip to content

Update campaign finance data #349

Update campaign finance data

Update campaign finance data #349

Workflow file for this run

name: Update campaign finance data
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Node dependencies
run: npm install
- name: Run scripts
run: |-
node scripts/index.js
- name: Commit and push if it changed
run: |-
git config user.name "Automated"
git config user.email "[email protected]"
git add data src/lib/data.json
git pull origin $GITHUB_REF
timestamp=$(date -u)
git commit -m "Latest data: ${timestamp}" || exit 0
git push