chore(ci): stop hiding *.md from PR Agent review

The previous "*.md" ignore glob hid best_practices.md and AGENTS.md from
the /review diff view (visible in PR #48 where the reviewer hallucinated
"this PR does not add a best_practices.md file"). README-style noise on
docs PRs is preferable to silently dropping changes to the project's
authoritative rule files.
This commit is contained in:
yuanzonghao
2026-06-07 15:35:55 +08:00
parent 81b99625d3
commit 63cc7a687e
+4 -1
View File
@@ -43,5 +43,8 @@ glob = [
"*.generated.*", "*.generated.*",
"public/**", "public/**",
"docs/**", "docs/**",
"*.md" # NOTE: do NOT add "*.md" here — it would hide best_practices.md and
# AGENTS.md from the /review diff view, even though /improve still reads
# best_practices.md directly. README-style noise is preferred over
# silently dropping changes to the project's authoritative rule files.
] ]