From 4102f7463e5702dbd56808040c96467d14bbeba7 Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Fri, 15 May 2026 15:27: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}/Bundler-Compatibility.md | 0 {.wiki => .github/wiki}/Contributing.md | 0 {.wiki => .github/wiki}/Home.md | 0 {.wiki => .github/wiki}/NREL-SPA-Algorithm.md | 0 {.wiki => .github/wiki}/Performance.md | 0 {.wiki => .github/wiki}/Validation-and-Benchmarks.md | 0 {.wiki => .github/wiki}/WebAssembly-in-npm-Packages.md | 0 .github/workflows/wiki-sync.yml | 4 ++-- 10 files changed, 2 insertions(+), 2 deletions(-) rename {.wiki => .github/wiki}/API-Reference.md (100%) rename {.wiki => .github/wiki}/Architecture.md (100%) rename {.wiki => .github/wiki}/Bundler-Compatibility.md (100%) rename {.wiki => .github/wiki}/Contributing.md (100%) rename {.wiki => .github/wiki}/Home.md (100%) rename {.wiki => .github/wiki}/NREL-SPA-Algorithm.md (100%) rename {.wiki => .github/wiki}/Performance.md (100%) rename {.wiki => .github/wiki}/Validation-and-Benchmarks.md (100%) rename {.wiki => .github/wiki}/WebAssembly-in-npm-Packages.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/Bundler-Compatibility.md b/.github/wiki/Bundler-Compatibility.md similarity index 100% rename from .wiki/Bundler-Compatibility.md rename to .github/wiki/Bundler-Compatibility.md diff --git a/.wiki/Contributing.md b/.github/wiki/Contributing.md similarity index 100% rename from .wiki/Contributing.md rename to .github/wiki/Contributing.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/.wiki/NREL-SPA-Algorithm.md b/.github/wiki/NREL-SPA-Algorithm.md similarity index 100% rename from .wiki/NREL-SPA-Algorithm.md rename to .github/wiki/NREL-SPA-Algorithm.md diff --git a/.wiki/Performance.md b/.github/wiki/Performance.md similarity index 100% rename from .wiki/Performance.md rename to .github/wiki/Performance.md diff --git a/.wiki/Validation-and-Benchmarks.md b/.github/wiki/Validation-and-Benchmarks.md similarity index 100% rename from .wiki/Validation-and-Benchmarks.md rename to .github/wiki/Validation-and-Benchmarks.md diff --git a/.wiki/WebAssembly-in-npm-Packages.md b/.github/wiki/WebAssembly-in-npm-Packages.md similarity index 100% rename from .wiki/WebAssembly-in-npm-Packages.md rename to .github/wiki/WebAssembly-in-npm-Packages.md diff --git a/.github/workflows/wiki-sync.yml b/.github/workflows/wiki-sync.yml index 50ef085..287b678 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/**'] permissions: contents: write @@ -23,7 +23,7 @@ jobs: - name: Sync wiki pages 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"