Is there a way to see on Jira's board (I'm obviously a part of) all tickets that I commented on / or someone just tagged me?
When I tried the dipper search, I filtered to only one result... (which I can't explain) but I was absolutely tagged in more than 40 comments at least
I found that you could achieve tickets you were mentioned in but using your JIRA ID.
Steps:
ex. If you wanted to see all issues you were mentioned on in the last 7 days.
comment ~ XXXXXXXXXX and updatedDate >= startofday(-7d) order by updatedDate
Hi Shirly,
You could use mentionsMe() and mentionsUser() functions of our add-on GO! JQL to search for issues that you or a particular user were mentioned in(including comments).
You could try the plugin for free!
Best,
Mehmet
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Shirly Meresman !
As I understand, you need to find all tickets where your user has been mentioned.
You can do that in both Jira and Confluence Jira macros by using Jira Query Language (JQL) and your accountID.
If you need to find tickets where you have been mentioned no matter where, you can use a simple query like this one:
text ~ accountid:555555:c55c5c5c-5c5c-5c55-5c55-cc555cc5555c
This query looks into any text within the tickets. The ~ operator is a looks for any occurrences of the string you gave it. The acountID value can be found when you create a new ticket and mention a user.
Here is how:
- Go to Jira
- Create a new Ticket
- Mention yourself
- Check that your mention looks like this [My Name|~accountid:555555:c55c5c5c-5c5c-5c55-5c55-cc555cc5555c]
- Copy the accountid and the value that comes after it, nothing else
- Use it with the query
However, if you want to look solely within comments or the ticket description, you can use this:
description ~ accountid:555555:c55c5c5c-5c5c-5c55-5c55-cc555cc5555c
comment ~ accountid:555555:c55c5c5c-5c5c-5c55-5c55-cc555cc5555c
There is also a Feature request aiming at a simpler usage of this kind of search. Here, take a look:
However, if you need to find ticket commented by someone specific, we will need to resort to third-party applications. Here, take a look into this older community thread:
I hope this shines some light! Looking forward to your reply.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So there's no simple way to just get a notification in JIRA's UI to see your own? Why even have mentions in your platform if they're just spit out in convoluted emails that you can't customize as a normal user. This is ridiculous.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Totally agree! I can't believe the function does not exist out of the box...who wants to go through tons of tickets or email notifications to find out where he is needed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
100%. Isn't that the point of this whole thing? The SQL queries are fine for devs, but what about other project participants?!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How is this still an issue? Is the mention feature ever going to be completed?
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.