3

In Jira, we use regular Web Links to point to an independent issue tracking system (for customer support). Those links can easily be identified by their domain name or URL prefix, e.g., they all have this form:

http://support.mycompany.com/ticket#1234

How can I filter for Jira issues that have links to URLs following this pattern?

The JQL editor does not offer anything related to issue links, and "link" and "URL" are genuinely bad search terms.

4

1 回答 1

1

JIRA的 ScriptRunner 提供了 Script JQL 函数“linkedIssuesOfRemote”,它可以搜索具有特定网页链接的问题,例如:

issuefunction in linkedIssuesOfRemote("http://support.mycompany.com/ticket#1234")

将返回链接到该页面的所有问题。您也可以使用链接标题来代替链接。

不幸的是,通配符(尚)不受支持,因此这不起作用:

issuefunction in linkedIssuesOfRemote("http://support.mycompany.com/ticket*")
于 2015-05-27T12:49:44.553 回答