I was to write a JIRA filter to see all the issues that belongs to QA in currentSprint
My current query looks like following, but I only want the tasks that belong to QA meaning where Task Options field of a Task issueType is either "QA General" or "Automation Task"
Query:
project = XYZ AND issuetype in ("New Feature","Production Defect",Task) and "Team Name" = "ABC"AND Sprint in openSprints()
Does this work?
project = XYZ AND "Team Name" = "ABC" AND Sprint in openSprints() AND (issuetype in ("New Feature", "Production Defect") OR (issuetype = Task AND "Task Options" IN ("QA General", "Automation Task")))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.