Hi,
I am trying to use an initialiser to set the Story Points field to 1 on the Create Issue action.
import com.atlassian.jira.component.ComponentAccessor if (getActionName() != "Create Issue") { return } def storypoints = getFieldById("customfield_10002") int defaultVal = 1 storypoints.setFormValue(defaultVal)
The above is not working, and I'm not sure why. When I remove the condition, it sets the value, but I need it to only set on Create.
Thanks!
Hello Angela.
Try the following:
import com.atlassian.jira.component.ComponentAccessor if (getActionName() != "Create Issue") { log.debug("MY ACTION NAME IS:" + getActionName()) return } def storypoints = getFieldById("customfield_10002") int defaultVal = 1 storypoints.setFormValue(defaultVal)
That will insert a string in your log as a debug with the name of your action name, that way you will be able to know why it is failing.
Furthermore if you trigger the behaviour in the Create Issue dialog you will be able to know what to place into the condition.
Hope this helps, if it doesn't, let me know here and I will debug this for you.
Cheers!
Dyelamos
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.