embedc
embedc

Reputation: 1665

Jira Summary contains text filter

I need to filter issues whose title (Summary attribute?) contains a text "config". So what I did is:

  1. More->Summary
  2. Enter the text "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

Answers (1)

Adil B
Adil B

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

Related Questions