3
votes

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.

1

1 Answers

1
votes

ScriptRunner for JIRA offers the Script JQL function "linkedIssuesOfRemote" that searches for issues that have a link to a specific web page, e.g.:

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

will return all issues that link to that page. Instead of the link you might use the link title too.

Unfortunately wildcards are not (yet) supported, thus this doesn't work:

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