We establish requirement tickets and then assign child stories to the requirement for the implementation of that requirement. I have a need to find stories that a fix version that is different than the fix version of their respective parent requirement.
To find mismatching fix versions between parent and child issues, you can use the following approach in Jira:
Here is a JQL approach to find stories with mismatched fix versions:
issueFunction in issuesInEpics("fixVersion is not EMPTY") AND fixVersion != parent.fixVersion
Note: This query uses the issuesInEpics function from the ScriptRunner plugin to find child issues (stories) with a fix version that does not match the fix version of their parent issue (requirement).
Best regards
Sam
Thank you so much for the reply. I do have the ScriptRunner plugin, so the issuesInEpics function is present. However, using your query results in the following message: "The value 'parent.fixVersion' does not exist for the field 'fixVersion'."
Is there a trick to get it to recognize the parent. prefix correctly?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try with the following:
Best regards
Sam
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.