From f25a27afc7acbd865a176cf592dc9d17c08744e5 Mon Sep 17 00:00:00 2001 From: Mish Date: Sun, 16 Nov 2025 13:54:37 +0000 Subject: [PATCH] Show ticket title in tagged ticket DM (#110) --- nephthys/actions/assign_tag.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nephthys/actions/assign_tag.py b/nephthys/actions/assign_tag.py index b92e0c4..4842fd0 100644 --- a/nephthys/actions/assign_tag.py +++ b/nephthys/actions/assign_tag.py @@ -94,5 +94,8 @@ async def assign_tag_callback( ) await client.chat_postMessage( channel=user["id"], - text=f"New ticket for {formatted_tags}!\n<{url}|ticket> <{ticket_url}|bts ticket>", + text=( + f"New ticket for {formatted_tags}! *{ticket.title}*\n" + f"<{url}|ticket> <{ticket_url}|bts ticket>" + ), )