I need a query to filter the parent tickets status changed to ready for testing without resolving the dev sub task in jql.
Ex: I have one parent story for that I have created two dev sub task.
Dev sub task status is open or in progress but I have change the parent story ticket status to Ready for testing so the query will return the main ticket.
Hi Madhavi,
if you have Scriptrunner, use the following:
status = "Ready for Testing" AND issueType = your_issuetype AND issueFunction in hasSubtasks("resolutions is empty")
This JQL finds issues of a certain type that are in the "Ready for Testing" status and have at least one unresolved sub-task.
Hope it helps!
I want like suppose in sprint while I am changing the parent ticket status is ready for testing with out resolved sub task but after some time I have resolved sub task and parent ticket also. Still I need to show parent ticket by using jql query.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.