I've created a groovy script that runs during a specific transition. It adds a simple comment by a specific user.
I'm expecting an email notification to be sent to the reporter, as is described in the notification scheme, but this is not working. It does when doing manual comments.
This is my groovy script:
import com.atlassian.jira.ComponentManager import com.atlassian.jira.issue.comments.CommentManager ComponentManager componentManager = ComponentManager.getInstance() CommentManager commentManager = componentManager.getCommentManager() commentManager.create(issue, "username", "Message bla bla bla", false)
The last parameter should be true if you want to trigger the event
That's because the "comment" event is fired by commenting on the issue. Adding a comment with code like this is not commenting on an issue, it's just adding comment data to it (I know, it's the same effect, but it's only adding data, it's not going through all the whole process). Your script will need to fire the additional event or send its own email.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you happen to have an example of how to fire such an event for this particular case?
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.