Shalom Craimer
Shalom Craimer

Reputation: 21469

Filter for JIRA issues with fixVersion containing "keyword"

I'd like to search for all the JIRA tasks that have a fixVersion that begin with "keyword", so I'd like to match any issue with fixVersion values of "keyword-1", "keywords-forever", etc

Even matching all the fixVersions that contain "keyword" (such as "my-keyword-version") would be helpful.

Thanks!

Upvotes: 5

Views: 12156

Answers (4)

oleh
oleh

Reputation: 960

Use fixVersion ~ "keyword*" to find all issues with a fixVersion starting with keyword

Upvotes: 1

Ryan McCool
Ryan McCool

Reputation: 51

The JQL has been slightly changed. The correct syntax would now be: fixVersion in versionMatches("keyword.*")

Upvotes: 0

Shalom Craimer
Shalom Craimer

Reputation: 21469

I eventually gave up, but our IT staff did not, and they got this JQL fragment to work:

fixVersion in versionMatch("keyword.*")

This criteria will match any issue that has a fixVersion starting with "keyword".

A little rooting around seems to indicate this is part of the JQL Tricks Plugin.

Upvotes: 2

Seb
Seb

Reputation: 1891

According to JRA-24152 this is not possible yet (at least not using JQL). However, you can use the workaround mentioned in the issue description:

Use the quicksearch-field and type in 'ff:keyword*' or whatever you want to filter for.

Upvotes: 1

Related Questions