From b4ffbd6e666f2b0fe31b9c3fdb73b451ab379218 Mon Sep 17 00:00:00 2001 From: Jeremy Eder Date: Thu, 8 Jan 2026 12:49:01 -0500 Subject: [PATCH 1/2] docs: add workflow_dispatch trigger to CI workflow example --- docs/patterns/autonomous-quality-enforcement.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/patterns/autonomous-quality-enforcement.md b/docs/patterns/autonomous-quality-enforcement.md index e171d83..3df4ea8 100644 --- a/docs/patterns/autonomous-quality-enforcement.md +++ b/docs/patterns/autonomous-quality-enforcement.md @@ -277,6 +277,7 @@ on: branches: [main] pull_request: branches: [main] + workflow_dispatch: jobs: validate: From c1d5c6c4ae539f385fb0453300f7f6167ec5d976 Mon Sep 17 00:00:00 2001 From: Jeremy Eder Date: Thu, 8 Jan 2026 12:52:14 -0500 Subject: [PATCH 2/2] fix: update CI to check for files that actually exist --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9de0783..cbfcfcd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: branches: [main] pull_request: branches: [main] + workflow_dispatch: jobs: documentation-structure: @@ -15,9 +16,8 @@ jobs: - name: Check documentation structure run: | - # Verify required documentation files exist + # Verify patterns documentation exists + test -d docs/patterns || { echo "Error: docs/patterns/ missing"; exit 1; } test -f docs/quickstart.md || { echo "Error: docs/quickstart.md missing"; exit 1; } - test -f docs/architecture.md || { echo "Error: docs/architecture.md missing"; exit 1; } - test -f docs/tutorial.md || { echo "Error: docs/tutorial.md missing"; exit 1; } - test -f docs/api-reference.md || { echo "Error: docs/api-reference.md missing"; exit 1; } + test -f docs/index.md || { echo "Error: docs/index.md missing"; exit 1; } echo "All required documentation files present"