Skip to content

Commit 6591895

Browse files
authored
Show 'Bug XXXX' instead of Bugzilla Ticket in Jira link (#159)
* Show 'Bug XXXX' instead of Bugzilla Ticket * Add Bugzilla context
1 parent 0743ca2 commit 6591895

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jbi/whiteboard_actions/default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def create_and_link_issue(
228228
jira_response = self.jira_client.create_or_update_issue_remote_links(
229229
issue_key=jira_key_in_response,
230230
link_url=bugzilla_url,
231-
title="Bugzilla Ticket",
231+
title=f"Bugzilla Bug {bug_obj.id}",
232232
)
233233

234234
self.update_issue(payload, bug_obj, jira_key_in_response, is_new=True)

0 commit comments

Comments
 (0)