From 44a7c62dc3648291bb68bc5080fc01d548607ce7 Mon Sep 17 00:00:00 2001 From: Jason Walker <913443@dadeschools.net> Date: Tue, 7 Jul 2026 13:07:57 -0400 Subject: [PATCH] fix: resolve conflicts for PR #415 Rebase onto current prgs/master and fix cleanup-mutations regex so "Cleanup mutations: none" does not false-positive the proof checklist. Co-Authored-By: Claude Opus 4.8 (1M context) --- post_merge_cleanup_proof.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post_merge_cleanup_proof.py b/post_merge_cleanup_proof.py index e1c156d..6562a04 100644 --- a/post_merge_cleanup_proof.py +++ b/post_merge_cleanup_proof.py @@ -209,7 +209,7 @@ def assess_post_merge_cleanup_proof( if not remote_delete and not worktree_remove: cleanup_mutations = re.search( - r"cleanup mutations\s*:\s*(?!none\b)(.+)", + r"cleanup mutations\s*:\s*(?!none\b)\S", text, re.IGNORECASE, )