@leroysheep / Socializer / commits / 7b8ea1f802

Meta/cook: mark topics that graduated as such

Junio C Hamano committed Jul 6, 2026 at 22:22 UTC 7b8ea1f8022d572eb3d7d8c27a94dab0856928fc
1 file changed +2 -2
cook
+2 -2
index 5667854069..99250cf516 100755 --- a/cook +++ b/cook @@ -797,9 +797,9 @@ sub tweak_willdo { sub tweak_graduated { my ($td) = @_; - # Remove the "Will merge" marker from topics that have graduated. + # Rename the "Will merge" marker from topics that have graduated. for ($td->{'text'}) { - s/\n Will merge to '$MASTER'\.(\n|$)/ /s; + s/\n Will merge to '$MASTER'\.(\n|$)/\n Graduated to '$MASTER'.$1/s; } }