jql query for filtering open to rejected bugs with assignee as a particular group in a project
If the devs on a given project are in a specific Jira Group (devops, frontend, [Client] devs, etc.), you could also replace the "assignee was in (a,b,c)" or ""Team[Dropdown]" = "abc"" from @Warren Kent's examples with "assignee was in membersOf("[GroupName]")"
Hi @Rajesh K ,
Based on your query "filtering open to rejected bugs with assignee as a particular group"
You can try :
status changed FROM Open TO Rejected AND assignee in membersOf("Groupname")
Or if you want to include the 2 Statuses , then :
status in (Open,Rejected) AND assignee in membersOf("Groupname")
Reference :
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Become an effective Jira admin
Manage global settings and shared configurations called schemes to achieve goals more quickly.
Streamline Jira administration with effective governance
Improve how you administer and maintain Jira and minimize clutter for users and administrators.
Learning Path
Become an effective Jira software project admin
Set up software projects and configure tools and agile boards to meet your team's needs.