mirror of
https://github.com/acamarata/pray-calc-ml.git
synced 2026-07-01 11:24:26 +00:00
- 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
25 lines
536 B
YAML
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
|