Find issues that were ever assigned to me

十年热恋 提交于 2019-12-03 06:27:56

问题


I am trying to create a filter to search for all issues that were ever assigned to me, even after the assignee is changed. I cant find the appropriate search parameters for this. Is it even possible in jira?


回答1:


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




回答2:


assignee = currentUser() OR assignee was currentUser() should do it




回答3:


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.




回答4:


issue in watchedIssues()

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




回答5:


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...




回答6:


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




回答7:


It seems the toolkit plugin URL has changed and is currently: https://marketplace.atlassian.com/apps/5142/toolkit-plugin-for-jira?hosting=server&tab=overview



来源:https://stackoverflow.com/questions/2582877/find-issues-that-were-ever-assigned-to-me

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!