Skip to content

Commit

Permalink
Auto Generate Readme Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Av32000 committed Dec 3, 2024
1 parent b9e4a77 commit 4e009b5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/update-readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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

0 comments on commit 4e009b5

Please sign in to comment.