I want to create a JIRA filter to get a list of the allowed tasks that I worked on.
I currently have the following:
resolution = Fixed AND assignee was currentUser() AND status was "In Progress" ORDER BY resolutiondate DESC
But in fact, I'm only looking for tasks that were "In Progress" while . I was assigned this.
The above raises too much, any permitted task that went through development that I could be assigned during any state.
I think that maybe I can pull out the date range for the status of "In Progress", but I hope there will be something simpler.
edit - The user who most often changes the status to "Running" is a bot. Therefore, AND status CHANGED TO "In Progress" BY currentUser()it will not work most of the time.
source
share