From 96a587fcd591fefd02728f7eaf64cf448d0676da Mon Sep 17 00:00:00 2001 From: ayoubdiourin7 Date: Tue, 8 Sep 2026 23:31:09 +0200 Subject: [PATCH 1/2] Prevent Hackbot from adding reviewers to Phabricator revision titles --- libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py b/libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py index a760b2f6a6..df8492da26 100644 --- a/libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py +++ b/libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py @@ -58,7 +58,9 @@ async def submit_patch( Field( description=( "Title for the new revision: a single line describing the fix, " - "as you would write a commit message subject." + "as you would write a commit message subject. Do not include " + "reviewer annotations (r=... or r?...): reviewer selection is " + "handled by Herald rules on the Phabricator side." ) ), ], From 6d715ddf2a84b9110f1d5a46b28273650af8fba8 Mon Sep 17 00:00:00 2001 From: ayoubdiourin7 Date: Tue, 8 Sep 2026 23:38:41 +0200 Subject: [PATCH 2/2] Leave reviewer selection to Phabricator --- libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py b/libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py index df8492da26..1f6f565877 100644 --- a/libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py +++ b/libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py @@ -60,7 +60,7 @@ async def submit_patch( "Title for the new revision: a single line describing the fix, " "as you would write a commit message subject. Do not include " "reviewer annotations (r=... or r?...): reviewer selection is " - "handled by Herald rules on the Phabricator side." + "handled on the Phabricator side." ) ), ],