-
Notifications
You must be signed in to change notification settings - Fork 539
35 lines (29 loc) · 875 Bytes
/
readme-update.yml
File metadata and controls
35 lines (29 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Update README
on:
pull_request:
branches: [master]
types: [closed]
jobs:
update-readme:
if: github.event.pull_request.merged
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: cd scripts && npm ci
- name: Generate README
run: node scripts/generate-readme.mjs
- name: Commit README updates
run: |
if [[ -z $(git status -s) ]]; then
echo "No changes in README"
else
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git commit -am "docs: automated README update"
git push
fi