Skip to content

Commit 35f8304

Browse files
authored
removing @ to prevent holmes from automatically reading the thread (#1899)
1 parent c74eb7d commit 35f8304

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/robusta/integrations/slack/sender.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -643,11 +643,11 @@ def send_holmes_analysis(
643643

644644
def get_holmes_block(self, platform_enabled: bool, slackbot_enabled) -> Optional[MarkdownBlock]:
645645
if not platform_enabled and not slackbot_enabled:
646-
return MarkdownBlock("_Ask AI questions about this alert, by connecting <https://platform.robusta.dev/create-account|Robusta SaaS> and tagging @holmes._")
646+
return MarkdownBlock("_Ask AI questions about this alert, by connecting <https://platform.robusta.dev/create-account|Robusta SaaS> and tagging holmes._")
647647
elif platform_enabled and not slackbot_enabled:
648-
return MarkdownBlock("_Ask AI questions about this alert, by adding @holmes to your <https://docs.robusta.dev/master/configuration/holmesgpt/index.html#enable-holmes-in-slack-in-the-platform|Slack>._")
648+
return MarkdownBlock("_Ask AI questions about this alert, by adding holmes to your <https://docs.robusta.dev/master/configuration/holmesgpt/index.html#enable-holmes-in-slack-in-the-platform|Slack>._")
649649
elif platform_enabled and slackbot_enabled:
650-
return MarkdownBlock("_Ask AI questions about this alert, by tagging @holmes in a threaded reply_")
650+
return MarkdownBlock("_Ask AI questions about this alert, by tagging holmes in a threaded reply_")
651651
return None
652652

653653

0 commit comments

Comments
 (0)