How do I create a filter for all tickets that mention my name in the comments?
You can try using the below query and save it as the filter:
If for a specific project:
project = "Project Name" and comment ~ currentUser()
If for all projects, then simply:
comment ~ currentUser()
Hope this helps.
Thanks,
Vamsi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.