It works, thank you. The
documentation wiki provides the syntax, but no examples are provided. I was able to find an example elsewhere.
There are 2 functions. The first function, "commentedIssues(?)", will find your own comments. You must be logged in to use this function. To capture all of my comments in JIRA, I picked an arbitrarily long duration of 2000 days.
The second function, "userCommentedIssues(?1, ?2)", will find the comments of any user. You do not need to be logged in to use this function.
Code: Select all
issue in userCommentedIssues("Lady_G", "2000d")
I can now use JQL to further refine my search. This query will find my comments containing the text "bug":
Code: Select all
issue in userCommentedIssues("Lady_G", "2000d") AND comment ~"bug"
The functions appear in the JQL auto-complete search. Type "issue in" and the functions will appear in the context sensitive drop-down list.
I had some difficulty with my browser. First, I needed to enable cookies for tracker.phpbb.com or I would get a server error. I had already whitelisted phpbb.com, but I needed to add tracker.phpbb.com.
Next, I need to do a page reload when entering a new query or hitting the "back" button in my browser. I don't need to do this every time, but a page reload will fix this error:
Error occurred communicating with the server. Please reload the page and try again.