Hi Folks,
Can somebody help me with a JQL query which can provide me the list of all the issues in which a specific user has been mentioned in comments (especially latest comments).
Thanks.
As far as I know, this should work:
comment ~ <User ID>
^ You can locate the User ID by either...
Ste
Thanks @Ste Wright ,
Thanks for a quick response, really appreciate it!
Also, what if I intend to find the user's mention in the last comment of the issue? If there a way?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not that I know of.
You have two options for this:
---
Option (1) is possible to do using native features - and is simple to setup.
In summary, you would:
Text = {{issue.comment.last.body}}
You could then search against this field instead:
"Last Comment" ~ <User ID>
---
Note: You could create a second version of your Automation Rule to handle existing Issues.
This rule would only need to run once. Once it's setup, you can press a button in the rule called "Run Rule" to run it immediately, then just deactivate/delete it.
The rule would look something like this...
Text = {{issue.comment.last.body}}
---
Let us know what you think!
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should be able to simply identify issues where a specific user has been mentioned in the comments by using this JQL phrase:
comment ~ "62850eb646f77e006f2244a5"
Where "62850eb646f77e006f2244a5" is the Account ID of the mentioned user.
Best, Max
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Max Foerster - K15t ,
Thanks for a quick response, really appreciate it!
Also, what if I intend to find the user's mention in the last comment of the issue? If there a way?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.