From 8b2ed7883252f1f6d8ee25625b6950b16ab2b0e3 Mon Sep 17 00:00:00 2001 From: Unnati Solanki Date: Thu, 7 May 2026 20:59:44 +0530 Subject: [PATCH] [patch] Update the formatting in slack message --- bin/mas-devops-notify-slack | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/mas-devops-notify-slack b/bin/mas-devops-notify-slack index ba6a148a..a139edd0 100755 --- a/bin/mas-devops-notify-slack +++ b/bin/mas-devops-notify-slack @@ -189,7 +189,7 @@ def notifyAnsibleStart(channels: list[str], taskName: str, instanceId: str | Non # Send task start message as thread reply to all channels taskMessage = [ - SlackUtil.buildSection(f"⏳ **{taskName}** - Started") + SlackUtil.buildSection(f"⏳ *{taskName}* - Started") ] allSuccess = True @@ -292,7 +292,7 @@ def notifyAnsibleComplete(channels: list[str], rc: int, taskName: str, instanceI # Build the completion message taskMessage = [ - SlackUtil.buildSection(f"{emoji} **{taskName}** - {status}{durationText}") + SlackUtil.buildSection(f"{emoji} *{taskName}* - {status}{durationText}") ] if rc != 0: taskMessage.append(SlackUtil.buildSection(f"Return Code: `{rc}`\nCheck logs for details"))