pray-calc-ml/.github/workflows/wiki-sync.yml
Aric Camarata b59232a57c ci: replace deprecated wiki sync action
newrelic/wiki-sync-action@v1.0.1 is archived and unmaintained.
Switch to Andrew-Chen-Wang/github-wiki-action@v4, which is actively
maintained and uses the same token-based approach.
2026-05-29 15:52:36 -04:00

25 lines
560 B
YAML

name: Sync Wiki
on:
push:
branches: [main]
paths:
- ".github/wiki/**"
permissions:
contents: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Sync .github/wiki/ to GitHub Wiki
uses: Andrew-Chen-Wang/github-wiki-action@v4
with:
path: .github/wiki
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "docs: sync wiki"
git-author-name: github-actions[bot]
git-author-email: github-actions[bot]@users.noreply.github.com