From 0c3e87ff399c34ac7bf9d8793c61d13cae2c6c92 Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Sun, 16 Aug 2026 11:59:37 -0400 Subject: [PATCH] fix(ci): drop unmatched **/*.mdx pathspec from quarterly-doc-audit add-paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit peter-evans/create-pull-request's git add treats multiple pathspec arguments atomically: since this repo has zero .mdx files, the **/*.mdx pathspec always fails with 'pathspec did not match any files', which aborts the whole git add — so none of the 44 legitimately modified .md wiki files get staged either, and the commit step then fails with 'no changes added to commit'. Confirmed via gh run view --log-failed on run 31956740627 (head_sha d999eda5, current main HEAD) and reproduced locally: an unmatched pathspec element in a multi-pathspec git add aborts the entire command. This is unrelated to the prior --strip-components=1 CLI tarball fix (#29), which is already correctly in place. find . -iname '*.mdx' confirms this repo has no mdx files, so drop the pattern entirely rather than working around it. --- .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 4a3622a5..711290d3 100644 --- a/.github/workflows/quarterly-doc-audit.yml +++ b/.github/workflows/quarterly-doc-audit.yml @@ -105,7 +105,6 @@ jobs: delete-branch: true add-paths: | **/*.md - **/*.mdx .claude/qa/findings/*.json - name: Upload JSON report