我正在一个项目中,根据JIRA的某些条件和字段以编程方式添加有关JIRA的注释。谁能告诉我如何使用仅限于团队成员的python在JIRA上添加评论?我尝试了以下方法:
jira = JIRA(options, basic_auth=(jira_user, jira_password))
issue = jira.issue('ISSUE-1764')
jira.add_comment(issue,'test1',None,True)
正在添加评论,但所有人都可以看到它们。看到了https://community.atlassian.com/t5/Jira-questions/Jira-Python-add-comment-does-not-post-as-internal-comment/qaq-p/888442#U1039983,但我还没有得到答复。我尝试将None
翻转为“角色”,但没有帮助。
有人可以帮忙吗?