From 0b2b43490c6299028e11a53a54ca87b6309a82ec Mon Sep 17 00:00:00 2001 From: "avi@robusta.dev" Date: Tue, 19 Aug 2025 11:09:55 +0300 Subject: [PATCH] removing @ to prevent holmes from automatically reading the thread --- src/robusta/integrations/slack/sender.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/robusta/integrations/slack/sender.py b/src/robusta/integrations/slack/sender.py index ad757cb3c..2fab758f3 100644 --- a/src/robusta/integrations/slack/sender.py +++ b/src/robusta/integrations/slack/sender.py @@ -643,11 +643,11 @@ def send_holmes_analysis( def get_holmes_block(self, platform_enabled: bool, slackbot_enabled) -> Optional[MarkdownBlock]: if not platform_enabled and not slackbot_enabled: - return MarkdownBlock("_Ask AI questions about this alert, by connecting and tagging @holmes._") + return MarkdownBlock("_Ask AI questions about this alert, by connecting and tagging holmes._") elif platform_enabled and not slackbot_enabled: - return MarkdownBlock("_Ask AI questions about this alert, by adding @holmes to your ._") + return MarkdownBlock("_Ask AI questions about this alert, by adding holmes to your ._") elif platform_enabled and slackbot_enabled: - return MarkdownBlock("_Ask AI questions about this alert, by tagging @holmes in a threaded reply_") + return MarkdownBlock("_Ask AI questions about this alert, by tagging holmes in a threaded reply_") return None