I want to copy custom field in Sub-task to same name's custom field in Parent when create Sub-Task automatically as post function by ScriptRunner. How can I define script exactly? Please provide me with the exact script code.
In the script runner post-function options there is built-in script to "create sub-task", in that post-function there is a section called "Additional issue Actions", in that section you can add a script like
def cf = customFieldManager.getCustomFieldObjects(sourceIssue).find {it.name == 'Name of CF'} issue.setCustomFieldValue(cf, sourceIssue.getCustomFieldValue(cf))
Here sourceIssue means the parent issue and issue is the sub-task, you just have to add the correct name of custom field and replace "Name of CF" and that should work as this is exact script code
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.