Skip to content

Update README

Update README #90

Workflow file for this run

name: "Update README"
on:
push:
branches:
- master
pull_request:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:
jobs:
update-readme:
name: Update README
if: github.actor != 'github-actions[bot]'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Generate README
run: node scripts/generate-readme.mjs
- name: Commit and push changes
if: github.event_name != 'pull_request'
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add profile/README.md
git diff --cached --quiet || git commit -m "Update README mod version table"
git push