1

In Jira Cloud, I need to create a filter which shows all (open) issues where currentUser() is mentioned in comment.

I installed Adaptavist Script Runner plugin (Cloud version), and i can filter all issues commented by currentUser(), like

commentedBy = currentUser()

however, how do i filter all issues where currentUser() is mentioned in the comments field - i.e. @username blah blah... ?

Martin Vang
  • 371
  • 3
  • 12

1 Answers1

2

Try this JQL to search for all comments containing the current user's username: comment ~ currentUser()

Adil B
  • 14,635
  • 11
  • 60
  • 78