Files
coffeechat/.github/workflows/generate-readme.yml
Frédéric Harper 738339a3ef remove caching
2025-03-17 10:04:26 -04:00

42 lines
995 B
YAML

name: Generate README
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'people.json'
- 'scripts/README-TEMPLATE.md'
- 'scripts/write-readme.js'
jobs:
generate-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4.1.0
with:
token: ${{ secrets.ACTIONS_TOKEN }}
- name: Setting up Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: 'v20.12.2'
- 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: 'actions@github.com'
message: 'Generate the README file based on latest change'