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
Improve user experience across Jira with global settings
Learn how to set up and configure a Jira site, manage Jira permissions, and configure Jira apps and integrations.
Learning Path
Streamline projects across Jira with shared configurations
Build Jira work items with reusable configurations called schemes, and reduce administrative work with automation.
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.