Hi,
I'm using JIRA 7.1.4 and Script Runner 4.3.0. In the create step i use the post script function to fast-track transition an issue. The post function is at the last place after the event. My condition is:
cfValues['Field A'] != 'Value A' && cfValues['Field B']?.value == null
This works fine, the desired transition is applied and the issue is closed directly.
But the additional issue actions don't work. I want to set a comment and use the example given by script runner:
issueInputParameters.setComment('Write your comment here').
But nothing happens, no comment is created. There is no message in the JIRA log and the post function only says "No failures in the last 15 execution(s)".
So am I missing anything?
This will only work if you have a screen on the transition and you have:
issueInputParameters.setSkipScreenCheck(true)
Although theres a bug in JIRA IssueService on some versions, causing the commenting to be done twice.
I would use CommentManager to do this. So the script to use is:
def commentManager = com.atlassian.jira.component.ComponentAccessor.getCommentManager() commentManager.create(issue, currentUser, "A comment", true)
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.