Hello Christian,
You could get this information from the database from the following query:
SELECT concat(po.pkey, '-', ji.issuenum) issuekey, ist.pname Status, ji.created Issue_Create, ja.actiontype Action_Type, ja.updated Action_Update, ja.actionbody FROM jiraaction ja LEFT JOIN jiraissue ji ON ja.issueid=ji.id LEFT JOIN project po ON ji.project=po.id LEFT JOIN issuestatus ist ON ji.issuestatus=ist.id WHERE ja.actiontype='comment' ORDER BY issuekey ASC, Issue_Create ASC, Action_Type ASC, Action_Update ASC
I hope it helps.
Yeap, I thought of that ... but he wants an JQL ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Possible? yes. Efficient? no. Idea: create a CF that will hold the flag last_update_is_comment (bool). Listen for changes. last_update_is_comment = isUpdateComment(change)
Define the JQL based on the CF above.
Have fun.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do not think it is possible to define such a JQL query out of the box or with script runner even.
Instead i would suggest an alternative to your need and i.e. you to update your notification scheme and include relevant users for the event Issue commented. This way you always get emails when someone comments on an issue.
Pilar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.