feat: auto-update README.md when PRs are created

This commit is contained in:
Russell Dempsey 2022-09-13 17:11:28 -07:00
parent 9c9c053128
commit 6949c82863

32
.github/workflows/pull_requests.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: Update README.md when PR is opened, reopened, or on sync
on:
pull_request:
types: [ opened, synchronize, reopened ]
branches: [ master, main ]
jobs:
update-readme:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 13
- name: Build the readme
run: |
npm install
npm run build:readme
- name: Commit updates to README.md
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add README.md
git commit -m "chore: update README.md" || echo "No changes, skipping commit"
- name: Push changes
if: success()
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}