How to filter allowed tasks that have been "Done" and assigned to the current user

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.

+4
source share
2 answers

So, we developed it for future releases by adding a new field that we named Resolver.

We fill it with the designated user when the problem moves to the status of “Running”.

Now I have JQL:

resolution = Fixed AND (assignee was currentUser() AND status was "In Progress" OR Resolver = currentUser()) ORDER BY resolutiondate DESC`

Or, if you don't mind skipping old issues:

resolution = Fixed AND Resolver = currentUser() ORDER BY resolutiondate DESC
0
source

, , "" . (, , ..). . script jira api, .

0

All Articles