问题
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... ?
回答1:
Try this JQL to search for all comments containing the current user's username: comment ~ currentUser()
来源:https://stackoverflow.com/questions/57691542/jira-cloud-filter-currentuser-mentioned-in-comment