找出分配给我的问题

我试图创建一个过滤器来搜索所有曾经分配给我的问题,即使在受托人被更改之后。我找不到合适的搜索参数。在吉拉有可能吗?

44435 次浏览

Check out the toolkit plugin https://studio.plugins.atlassian.com/wiki/display/JTOOL/JIRA+Toolkit+Plugin

It has a custom field 'Participant' which allows you to find all issues that you raised, were assigned to or commented on.

Francis

assignee was currentUser() should do it.

It will also include issues that are currently assigned to you.

If it doesn't, try: (assignee = currentUser() OR assignee was currentUser())

issue in watchedIssues()

... might also be of use. It gets every issue relevant to you.

I'm not sure if things have changed with JIRA since previous answers were written, but all I needed was:

assignee was currentUser()

This will pick up things that are currently or previously assigned to me.

On the JIRA web application/site navigate to Issues (in header) > Search for issues, then enter your search criteria.

Click the eyeglass icon on the left pane Click on "Advanced search for issues" On the top right, click on advanced search to open the JQL textbox Enter the text "assignee = currentUser() OR assignee was currentUser()" If you'll use this repeatedly, click save and name the search Then you'll see it on the left bar under Starred...

2022 and still the solution works like a charm for jira version 8.20.6

assignee was currentUser()