Hi! I want a list of all tickets in To Do, In Progress, and Ready for Verification (our 3 active states) that are: 1) Assigned to me and 2) in a sprint.
My goal is to see all tickets that I have to address in any current sprint. There are a lot of backlog tickets assigned to me, but they're not in a sprint yet, so I don't need to them in my list. I understand how to filter by 1 or more specific sprints, but I want a generic filter that just shows me all my active tickets in an current/active sprint.
The JQL for my filter currently is:
status in ("In Progress", "Ready for Verification", "Ready For Verification", "READY FOR VERIFICATION", "To Do", "TO DO") AND assignee in (currentUser()) ORDER BY key ASC, created DESC
Can you tell me exactly what to add to the JQL, so I see all my active tickets in any active sprint?
You're the best! Thank you!!!!
If you only need tickets assigned to you that are in an active sprint then you do not need to specify the workflow statuses.
Try
sprint in opensprints() AND assignee = currentuser()
hope this works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.