Reputation: 21469
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
Reputation: 960
Use fixVersion ~ "keyword*"
to find all issues with a fixVersion starting with keyword
Upvotes: 1
Reputation: 51
The JQL has been slightly changed. The correct syntax would now be:
fixVersion in versionMatches("keyword.*")
Upvotes: 0
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