Skip to content

Update Stats

Update Stats #1167

Workflow file for this run

name: Update Stats
on:
workflow_dispatch:
schedule:
- cron: '4 * 1,2 * *'
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Update
run: node --no-warnings --experimental-specifier-resolution=node update/stats.mjs
- name: Test
run: npm run test
- name: Commit and push if it changed
run: |-
git config user.name "Automated"
git config user.email "[email protected]"
git add -A
git commit -m "Stats ($(date "+%Y-%m"))" || exit 0
git push