質問

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!

役に立ちましたか?

解決 2

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.

他のヒント

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.

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

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top