mirror of
https://github.com/acamarata/pray-calc-ml.git
synced 2026-07-01 11:24:26 +00:00
Five wiki pages covering Data Collection, ML Crunching, Architecture, Data Sources, and Research Notes. GitHub Actions workflow syncs .wiki/ to the GitHub Wiki on push to main. Adds .markdownlintignore and VS Code settings to exclude .claude/ from lint checks. Adds .allow-ai-terms to allow the .claude/ directory path reference in lint ignore files.
22 lines
483 B
YAML
22 lines
483 B
YAML
name: Sync Wiki
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- ".wiki/**"
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Sync .wiki/ to GitHub Wiki
|
|
uses: newrelic/wiki-sync-action@v1.0.1
|
|
with:
|
|
source: .wiki
|
|
destination: wiki
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
gitAuthorName: github-actions[bot]
|
|
gitAuthorEmail: github-actions[bot]@users.noreply.github.com
|