From 8b51b0fa481bee79109123486f3e500b0b536b7b Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Fri, 15 May 2026 15:26:52 -0400 Subject: [PATCH] chore: align repository structure with portfolio documentation standards --- {.wiki => .github/wiki}/API-Reference.md | 0 {.wiki => .github/wiki}/Architecture.md | 0 {.wiki => .github/wiki}/Home.md | 0 .github/workflows/wiki-sync.yml | 8 ++++---- 4 files changed, 4 insertions(+), 4 deletions(-) rename {.wiki => .github/wiki}/API-Reference.md (100%) rename {.wiki => .github/wiki}/Architecture.md (100%) rename {.wiki => .github/wiki}/Home.md (100%) diff --git a/.wiki/API-Reference.md b/.github/wiki/API-Reference.md similarity index 100% rename from .wiki/API-Reference.md rename to .github/wiki/API-Reference.md diff --git a/.wiki/Architecture.md b/.github/wiki/Architecture.md similarity index 100% rename from .wiki/Architecture.md rename to .github/wiki/Architecture.md diff --git a/.wiki/Home.md b/.github/wiki/Home.md similarity index 100% rename from .wiki/Home.md rename to .github/wiki/Home.md diff --git a/.github/workflows/wiki-sync.yml b/.github/workflows/wiki-sync.yml index 17253f7..95eb7d1 100644 --- a/.github/workflows/wiki-sync.yml +++ b/.github/workflows/wiki-sync.yml @@ -4,14 +4,14 @@ on: push: branches: [main] paths: - - '.wiki/**' + - '.github/wiki/**' permissions: contents: write jobs: sync: - name: Sync .wiki/ to GitHub Wiki + name: Sync .github/wiki/ to GitHub Wiki runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -24,7 +24,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Copy wiki files - run: cp .wiki/*.md wiki-repo/ + run: cp .github/wiki/*.md wiki-repo/ - name: Commit and push working-directory: wiki-repo @@ -32,5 +32,5 @@ jobs: git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" git add -A - git diff --cached --quiet || git commit -m "Sync wiki from .wiki/ [skip ci]" + git diff --cached --quiet || git commit -m "Sync wiki from .github/wiki/ [skip ci]" git push