Hi all!
I want to "catch" stories on a specific status, which are related to tasks on a specific status.
For example:
Story status = Ready For QA & has linked tasks [issue type] on status = In Progress.
Does anyone has anything alike?
Thanks!
Hello Malka,
You can get the result using JQL Search Extensions
The JQL will look like this:
issuetype = Story AND status="Done" AND linkedIssueStatus = "In Progress"
You can find the full documentation here.
Regards,
Ziad
Hi @Dvir Malka ,
If you have script runner, the below JQL should help
type=story and status ='Ready For QA' and issueFunction in linkedIssuesOf("type=task and status = 'In Progress'", "blocks")
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.