From 2cf43bde8e02af8b3f04d4336d0e25e407372bcf Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Fri, 15 May 2026 15:27:24 -0400 Subject: [PATCH] chore: align repository structure with portfolio documentation standards --- {.wiki => .github/wiki}/API-Reference.md | 0 {.wiki => .github/wiki}/Home.md | 0 .github/workflows/wiki-sync.yml | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename {.wiki => .github/wiki}/API-Reference.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/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 974c6c6..69b3350 100644 --- a/.github/workflows/wiki-sync.yml +++ b/.github/workflows/wiki-sync.yml @@ -3,7 +3,7 @@ name: Sync Wiki on: push: branches: [main] - paths: [".wiki/**"] + paths: [".github/wiki/**"] workflow_dispatch: permissions: @@ -29,7 +29,7 @@ jobs: - name: Sync wiki pages if: steps.clone_wiki.outputs.wiki_exists == 'true' run: | - cp .wiki/*.md .wiki-remote/ + cp .github/wiki/*.md .wiki-remote/ cd .wiki-remote git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com"