QA logs a defect and the initial issuetype is bug
During a bug scrub, the bug issue type was changed to Story or some other issue type.
Is there way to query for issue starting as a bug and then being changed to some other issuetype?
you might have to use the Jtricks plugin. it has the following function that can get you the data you need:
movedIssues([type],[From],[To])
Thank you Krishnanand_Nayak
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Alternatively, you can also use JQL Booster Pack latest versions and type the following:
• Find issues in which their issue type have ever changed:
issue IN issueTypeChanged() |
• Find Open issues which once was a Task and their type has changed:
status = Open AND issue IN issueTypeChanged( "Task" ) status = Open AND issue IN issueTypeChanged( "Task" , "*" ) |
• Find Bugs in which their issue type have once changed to 'Story':
type = Bug AND issue IN issueTypeChanged( "*" , "Story" ) |
• Find 'Open' issues in which their issue type have changed from 'Feature' to 'Story':
status = Open AND issue IN issueTypeChanged( "Feature" , "Story" ) |
References:
Hope this helps you to create awesome queries <3
Kind regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.