Reputation: 1665
I need to filter issues whose title (Summary attribute?) contains a text "config
". So what I did is:
config
"But for some reason I only got issues whose title contains "config
" or "configs
". I didn't get the issues whose title contains e.g. "configuration
". What's wrong?
Upvotes: 24
Views: 65992
Reputation: 16806
Try this JQL for your filter:
summary ~ "config*"
The wildcard should help pick up config
as well as extensions like configuration
and configs
.
Upvotes: 33