fix(ci): remove *.md from paths-ignore — unblocks docs PRs#1353
Merged
fix(ci): remove *.md from paths-ignore — unblocks docs PRs#1353
Conversation
Major unblock cycle: - #995 (governance catch-22) resolved — content agents unblocked after 5 cycles - #1259 (swarm audit) closed — site updated to 120 agents / 4 drivers - #934 (v2.7.x announcement) closed as superseded by #1260 - PR #1338 reviewed (Live Office README — LGTM, agent count alignment note posted) - PR #1349 filed: site stats sync (event kinds 47→48, invariants og/JSON-LD 22→24, CLI 29→33) - Sprint refocused: sole active issue is #1260 (v2.9.x announcement), now unblocked Health: green Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…equired checks README.md / CLAUDE.md / ARCHITECTURE.md PRs were blocked because paths-ignore excluded '*.md', so lint+test-and-build never ran, and enforce_admins=true prevented admin bypass. Removing '*.md' from the exclusion lets CI run normally on root-level markdown PRs. site/** remains excluded (HTML-only, no TypeScript). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Root-level
*.mdfiles (README.md,CLAUDE.md,ARCHITECTURE.md) were inpaths-ignore, solintandtest-and-buildnever ran on docs-only PRs. Withenforce_admins: true, even admin bypass was blocked.This held up PRs #1318, #1320 (docs sync), #1338 (README Live Office), and any future docs PR.
Fix
Remove
*.mdfrompaths-ignore.site/**remains excluded (no TypeScript, HTML-only).docs/**and.github/ISSUE_TEMPLATE/**remain excluded.Docs PRs will now trigger CI, which runs quickly since they involve no TypeScript changes.
Impact
🤖 Generated with Claude Code