Skip to content

Update page lists

Update page lists #917

Workflow file for this run

name: Update page lists
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
- run: npm ci
- run: node downloadlists.js
- run: |
git config --global user.name "vqbc"
git config --global user.email "[email protected]"
git add -A
git diff-index --quiet HEAD || git commit -m "Update page lists"
git push