Skip to content

Generate README

Generate README #6

name: Generate README
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'people.json'
- 'scripts/README-TEMPLATE.md'
jobs:
generate-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setting up Node.js
uses: actions/[email protected]
with:
node-version: 'v20.12.2'
- name: Restore Node.js modules (or cache them)
uses: actions/[email protected]
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
- name: Installing dependencies
working-directory: ./scripts
run: npm install
- name: Generate the new README file
working-directory: ./scripts
run: node write-readme.js
- name: Commit the changes
uses: EndBug/add-and-commit@v9
with:
add: 'README.md'
author_name: 'GitHub Actions'
author_email: '[email protected]'
message: 'Generate the README file based on latest change'