How can I find a list of all tickets that are linked to issues that have been resolved?

蓝咒 提交于 2019-12-13 16:09:11

问题


I'm using Jira as a test case management system, with each individual test case being represented as a ticket under the Test project. I have some test case tickets that are linked as "blocked by" to issue tickets in another Jira project. Some of those issues have since been resolved. Is there an advanced search query I can use to pull up all the Test tickets which are linked to resolved issues?

Using Jira OnDemand hosted at Atlassian. I'm open to creative solutions that involve browser automation, Excel, etc.


回答1:


You can actually do some of this natively with JQL using the linkedissues() functionality that was introduced in JIRA 4.0:

Find issues that are linked to a particular issue:

issue in linkedIssues(ABC-123)

Find issues that are linked to a particular issue via a particular type of link:

issue in linkedIssues(ABC-123,"is duplicated by")

Unfortunately, the functionality you really need (the ability to query for ALL issues with links of a certain type) is only handled by a plugin called JQL Tricks Plugin (which you can't install into your hosted JIRA instance). Sorry, but I don't have a great browser automation or Excel solution for you.



来源:https://stackoverflow.com/questions/11779323/how-can-i-find-a-list-of-all-tickets-that-are-linked-to-issues-that-have-been-re

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!