We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77f79a2 commit 34b6d6aCopy full SHA for 34b6d6a
examples/jira/jira_add_comment.py
@@ -6,3 +6,14 @@
6
jira = Jira(url="https://jira.example.com/", username="gonchik.tsymzhitov", password="admin")
7
8
jira.issue_add_comment("TST-11098", "test rest api request")
9
+
10
+""" How to add comment with link to another comment """
11
12
+issue_id = "TST-101"
13
+comment_id = "10001"
14
15
+new_comment_message = (
16
+ f"Answering to [comment #{comment_id}|{jira.url}browse/{issue_id}?focusedCommentId={comment_id}] ..."
17
+)
18
19
+jira.issue_add_comment(issue_id, new_comment_message)
0 commit comments