hi,
I would like see all the tickets and commits for each developer, what he handled in last 4 months. It could be tickets that he/she assigned/commented, and they commit to branch.
Thanks
Hi @Eran Nir
You can search for the issue either for a specific assignee or a team or en entire project using JQL.
Go to Search | Issues | Advanced Search and type in the following JQL
resolved >= -24w order by resolutiondate ASC
You can further refine it for a specific team member or yourself.
assignee = currentUser() and resolutiondate >= -30d order by created DESC
Then you can save this JQL as a filter and use it in your dashboard.
You cannot search based on branches but you can search based on commits.
development[commits].all > 0
The above JQL will give all the issues where there is a commit.
You can combine various JQL queries to get your desired result. This will work as long as issues are assigned to developers. May not be super accurate in some cases will do give it a try.
I hope it helps,
Ravi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.