I have 2 fixVersions:
some issues assigned with fixVersion A_XXX, some issues assigned with B_XXX
Then I use fixversion in versionMatch("A_*") to filter the issue, but the issues, which assign with fixVersion "B_A_XXX" can be displayed as well.
How can I only filter the issue assign with "A_XXX"
Hello @CHEN How
You will need to use the full name of the fixversion to get the exact output because both the fix versions has the same name.
fixVersion IN (B_A_123) OR fixVersion IN (A_123)
Let me know in case of any further help.
Thanks,
Prashant Sultania
Note: Upvote, Like or Accept Answer if it resolves your query
Hello @CHEN How
I have edited the above command.
Yes, you can use following below format to view the fixversions related to (A_) only.
fixVersion ~ "A_*"
Let me know in case of any further help.
Thanks,
Prashant Sultania
Note: Upvote, Like or Accept Answer if it resolves your query
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank You for the validation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.