Stats #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stats | |
on: | |
schedule: | |
- cron: '33 5 * * *' | |
workflow_dispatch: | |
jobs: | |
format-code: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Build stats | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- run: node generate.js | |
# Other steps that change files in the repository go here | |
# … | |
# Commit all changed files back to the repository | |
- uses: stefanzweifel/git-auto-commit-action@v5 |