Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issues commented by me in JIRA

Tags:

jira

As per JIRA documentation http://www.atlassian.com/software/jira/docs/latest

The following filter will show the issues opned by me (Current User).

reporter = currentUser() 

Is there a filer that will show issues commented by me? something like the following does not work...

comment by = currentUser() 
like image 510
shantanuo Avatar asked May 12 '11 08:05

shantanuo


People also ask

How do I see comments in Jira?

You can search in comments using Advanced text searching. See details at https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-fields-reference-764478339.html#Advancedsearching-fieldsreference-CommentCommentsComment.

How do I see all the issues I'm watching in Jira?

2 Answers. Show activity on this post. From the top right button "add gadget", then on the pop-pup search for "watched" and you will get it.


1 Answers

if you know the name of the user (lets assume the name is Tom you can do:

issueFunction in commented("by Tom")

you can also filter it by date of the comment like:

issueFunction in commented("after -1d by Tom")

UPDATE: this requires ScriptRunner being installed in JIRA server (as JBert pointed out)

like image 68
Tomas Panik Avatar answered Sep 22 '22 19:09

Tomas Panik