Skip to content

Auto Generate Readme Action #1

Auto Generate Readme Action

Auto Generate Readme Action #1

Workflow file for this run

name: Update README
on:
push:
branches:
- main
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Generate README.md
run: node generateReadme.js
- name: Commit and push changes
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add README.md
git commit -m "[Auto] Update README.md" || echo "No changes to commit"
git push