Skip to content

Commit

Permalink
core:update telex message to match expected format
Browse files Browse the repository at this point in the history
  • Loading branch information
malachsalama committed Feb 23, 2025
1 parent c37d900 commit 5cf946e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions api/routes/webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@ async def jira_webhook(request: Request):

# Format notification message
message = (
f"🚨 *High-Priority Task Created!*\n"
f"*Task:* `{issue_key}` - {issue_summary}\n"
f"*Priority:* {issue_priority}\n"
f"*Assignee:* {assignee}"
f"High-Priority Task Created: {issue_key} - {issue_summary}\n"
f"Priority: {issue_priority}\n"
f"Assignee: {assignee}"
)

# Format payload for Telex
Expand Down

0 comments on commit 5cf946e

Please sign in to comment.