From 1219aa18ea883646ada73b00307ba99ca9281798 Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Sun, 16 Aug 2026 12:29:03 -0400 Subject: [PATCH] fix(ci): drop permanently-unmatchable JSON-findings pathspec from add-paths Same fix as the sibling plugins (PR #33) and admin repos: the AI-tooling config directory this org keeps out of git (per repo .gitignore) is gitignored repo-wide. git add's pathspec matching does not count gitignored files as a match even when they exist on disk with fresh content, so the findings-JSON pattern in add-paths would abort the whole git add call the moment any real .md change needs staging -- confirmed live in plugins run 31958209014. No functional loss: the JSON report is already preserved via the 'Upload JSON report' actions/upload-artifact step and fed into the PR body directly via body-path, independent of git staging. --- .github/workflows/quarterly-doc-audit.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/quarterly-doc-audit.yml b/.github/workflows/quarterly-doc-audit.yml index 6f24fb3da..36d4b4704 100644 --- a/.github/workflows/quarterly-doc-audit.yml +++ b/.github/workflows/quarterly-doc-audit.yml @@ -113,7 +113,6 @@ jobs: delete-branch: true add-paths: | **/*.md - .claude/qa/findings/*.json - name: Upload JSON report uses: actions/upload-artifact@v7