GRM-57: refactor: fully automate PR merge — no manual label/review needed

This commit is contained in:
2026-06-22 10:45:26 +00:00
parent f5177c823c
commit 8e532839fd
16 changed files with 335 additions and 1541 deletions
+3 -4
View File
@@ -507,12 +507,11 @@ class TestBuildReviewBody:
body = build_review_body(result)
assert "No issues found" in body
def test_body_contains_checklist_reference(self) -> None:
"""Review body must reference REVIEW_CHECKLIST.md for manual review."""
def test_body_contains_auto_merge_note(self) -> None:
"""Review body must mention auto-merge."""
result = ReviewResult()
body = build_review_body(result)
assert "REVIEW_CHECKLIST.md" in body
assert "--checklist-confirmed" in body
assert "Auto-merge" in body
class TestRunReview: