You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
issue created => issuetype = separation => create subtask assigned to manager
1) how do i assign it to a specific user from a field (like %supervisor%) - that doesn't work
2) it won't save
Sub-tasks and assignment cannot be dome through the SD automation, these tasks will need to be completed as post functions of your workflow. (Can be a post function of create if you like)
For the assignee, you would want to use the "Copy Value From Other Field" post function to copy your supervisor field to assignee.
image2016-12-9 9:28:22.png
We are doing the subtasks using scriptrunner like this:
image2016-12-9 9:27:50.png
issue.summary = 'Badge Access - ' + issue.getSummary() import com.atlassian.jira.ComponentManager import com.atlassian.jira.issue.customfields.manager.OptionsManager import com.atlassian.jira.component.ComponentAccessor def componentManager = ComponentManager.instance def optionsManager = componentManager.getComponentInstanceOfType(OptionsManager.class) def cf = customFieldManager.getCustomFieldObjects(issue).find {it.name == 'Support Category'} def fieldConfig = cf.getRelevantConfig(issue) def optionOrigin = optionsManager.getOptions(fieldConfig).find {it.value == "Technical Support"} issue.setCustomFieldValue(cf, optionOrigin) def projectComponentManager = ComponentAccessor.getProjectComponentManager() def project = issue.getProjectObject() def component = projectComponentManager.findByComponentName(project.getId(), "Door Access") issue.setComponent([component])
Are you trying to do this in SD's automation or with Scriptrunner?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Jeff, no, i found Quick subtasks for Jira, which works like a charm!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.