mirror of
https://github.com/acamarata/pray-calc-ml.git
synced 2026-07-01 03:14:27 +00:00
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.
25 lines
560 B
YAML
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
|