pray-calc-ml/.github/workflows/wiki-sync.yml
Aric Camarata d8471f8ca5 chore: superclean compliance pass
- Migrate .wiki/ to .github/wiki/ (GCI standard for public repos)
- Add _Sidebar.md for GitHub Wiki navigation
- Update wiki-sync.yml to reference .github/wiki/ path
- Remove .markdownlintignore (covered by .vscode/settings.json)
- Migrate .allow-ai-terms to ALLOW_AI_TERMS_REPOS in pre-commit hook
- Expand .gitignore with full IDE and AI agent directory list
- Update README project structure reference
2026-02-28 11:55:08 -05:00

25 lines
536 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: newrelic/wiki-sync-action@v1.0.1
with:
source: .github/wiki
destination: wiki
token: ${{ secrets.GITHUB_TOKEN }}
gitAuthorName: github-actions[bot]
gitAuthorEmail: github-actions[bot]@users.noreply.github.com