Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/pr-approval-agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Deny-list (hard gate)
Size ceiling (hard gate)
- >500 lines or >20 files → too large for auto-review
- >1000 lines or >20 files → too large for auto-review
Tier classification
Expand Down
2 changes: 1 addition & 1 deletion tools/pr-approval-agent/gates.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def detect_ownership(files: list[str], rules: list[CodeownersRule]) -> dict:
# ── Tier assignment ──────────────────────────────────────────────


MAX_LINES = 500
MAX_LINES = 1000
MAX_FILES = 20


Expand Down
Loading