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()
I had the same problem and
worked for me
The following query identifies tickets in which current (or some other particular) user was mentioned in comments:
The new scriptrunner can do lots of things e.g. find issues with comments
issueFunction in hasComments()
, find issues with comments that are not older than 7 daysissueFunction in commented("after -7d")
and also issue comments from users or groups.Details can be found here: https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-commented(commentquery)
This (to my knowledge) cannot be completed using JQL, even with a plugin. If you have DB access, the query is simple:
This is the query to know the issues I am involved in:
This is the query to know all issues raised in the last 24 hours.
You can use the Activity Stream gadget with a filter configured by username and activity type. Note that this requires a case-sensitive username, not the friendly Display Name.
Activity Stream gadget configuration:
Filtered Activity Stream display:
(I posted a variation of this answer elsewhere but have improved my filter since then and the new filter is more salient to this question anyhow.)