chore: align repository structure with portfolio documentation standards

This commit is contained in:
Aric Camarata 2026-05-15 15:27:03 -04:00
parent fb3f599a4e
commit 54af913f0b
5 changed files with 4 additions and 4 deletions

View file

@ -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
@ -25,7 +25,7 @@ jobs:
- name: Copy wiki files
run: |
cp .wiki/*.md wiki-repo/
cp .github/wiki/*.md wiki-repo/
- name: Commit and push
working-directory: wiki-repo
@ -33,5 +33,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