Skip to content

Commit e5ce2e3

Browse files
authored
chore(stamphog): Raise auto-review line ceiling to 1000 (#3246)
1 parent 4fd5613 commit e5ce2e3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tools/pr-approval-agent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Deny-list (hard gate)
5858
5959
6060
Size ceiling (hard gate)
61-
- >500 lines or >20 files → too large for auto-review
61+
- >1000 lines or >20 files → too large for auto-review
6262
6363
6464
Tier classification

tools/pr-approval-agent/gates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ def detect_ownership(files: list[str], rules: list[CodeownersRule]) -> dict:
525525
# ── Tier assignment ──────────────────────────────────────────────
526526

527527

528-
MAX_LINES = 500
528+
MAX_LINES = 1000
529529
MAX_FILES = 20
530530

531531

0 commit comments

Comments
 (0)