I have multiple projects that use the same workflow. However, each project has different leads from different groups. At certain transitions, i would like to auto assign the issue to the relevant lead (Dev, QA, etc.) based on the Project.
Replace key1 as project keis and usernames as actual user names.
import com.atlassian.jira.component.ComponentAccessor switch (issue.getProjectObject().getKey()){ case "key1": issue.setAssigneeId(ComponentAccessor.getUserManager().getUserByName("username1")); break; case "key2": issue.setAssigneeId(ComponentAccessor.getUserManager().getUserByName("username2")); break; case "key3": issue.setAssigneeId(ComponentAccessor.getUserManager().getUserByName("username3")); break; }
This will assing issue to project lead:
issue.setAssigneeId(issue.getProjectObject().getLeadUserKey())
When I put that into the custom script field and update the keys/user names, I get errors on the case lines saying:
"Cannot find matching method
com.atlassian.jira.issue.MutableIssue#setAssigneeID(com.atlassian.jira.us (remainder is cut off)
Please check if the declared type is right and if the method exists."
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is updated script:
import com.atlassian.jira.component.ComponentAccessor switch (issue.getProjectObject().getKey()){ case "key1": issue.setAssigneeId(ComponentAccessor.getUserManager().getUserByName("username1").getName()); break; case "key2": issue.setAssigneeId(ComponentAccessor.getUserManager().getUserByName("username2").getName()); break; case "key3": issue.setAssigneeId(ComponentAccessor.getUserManager().getUserByName("username3").getName()); break; }
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.
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.