Hi Team,
My team is using JIRA's timetracking to track time on each ticket now We want to create a filter to find out which ticktes don't have any time tracking entered by devs and status is completed.
Can anyone help me on that
Hi @Arpit Shah ,
You can try with below Queries
This query will give all the tickets which are moved to Completed and no worklog.
project = "your project name" AND issuetype = "your issue type" and timespent is EMPTY and status = Completed
This queries will give all the tickets which are moved to Completed and no worklog by your dev team group members (if any other team logs work also it will list).
project = "your project name" AND issuetype = "your issue type" and status = Completed and ((timespent is EMPTY) or (timespent is not empty and worklogauthor not in membersOf("your dev team group name")) )
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.