'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!
Solution 1:[1]
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.
Solution 2:[2]
The JQL has been slightly changed. The correct syntax would now be:
fixVersion in versionMatches("keyword.*")
Solution 3:[3]
Use fixVersion ~ "keyword*" to find all issues with a fixVersion starting with keyword
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Seb |
| Solution 2 | Ryan McCool |
| Solution 3 | oleh |
