Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of all jira tasks that I was assigner on

Tags:

jira

How can I get list of all tasks that I was assigned?

I just need to know all the tasks despite its current status or assignee.

Is it possible?

like image 545
wormhit Avatar asked Dec 12 '22 07:12

wormhit


2 Answers

So here the answer to the changed question (tasks that I was assigned to):

  • Depending on the version of JIRA, you are now able to asked questions that go into history. See the example in the documentation and the documentation about the "WAS operator".

Your query should look like:

assignee WAS "wormhit" BEFORE "02/02/2011"

If you want to store your search (not the result), there are the following options:

  • Define your own filter by saving a search like the one as "Own issues". Steps:
    • Search > Edit > Issue Attributes > Assignee > Current User
    • Switch on the top to tab Summary
    • Under Operations, press Save it as filter
    • Give it meaningful name.
    • The filter is now available under Issues > Favorite Filters
  • You may store the shortcut for the search as a bookmark enter image description here
like image 113
mliebelt Avatar answered Feb 19 '23 15:02

mliebelt


General-purpose query for whichever 'current user':

assignee was currentUser()

This filter can be conveniently shared & anybody can put it on their dashboard, etc and it will return results specific to them.. Requires a not-too-old JIRA version, though.

This was my most-requested JIRA feature ever.

like image 25
Thomas W Avatar answered Feb 19 '23 13:02

Thomas W