Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hello Community,
I would like that when the user fills the compsant field, the Assignee is filled with the lead of this component, this is script here is the script I am using :
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.event.type.EventDispatchOption;
import com.atlassian.jira.issue.CustomFieldManager;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.fields.CustomField;
import com.atlassian.jira.issue.customfields.manager.OptionsManager;
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def issueManager = ComponentAccessor.getIssueManager()
def issueKey = "RP-83"
def issue = issueManager.getIssueObject(issueKey)
//def issue = issue as Issue
//Get Value of the component
def ComponentValue = issue.getComponents()
//Get Values Name and lead of the component
def ComponentName = ComponentValue.name
def Lead = ComponentValue.lead
//fill the field Assignee with the lead of the component
if {
}
But i am stuck on the if loop because i dont know how to configure it.
Can you help me please ?
Thank you in advance.
BR
Fayçal
Hi @BYA
You can do that natively in Jira by setting the default assignee to component lead. In case you want to do it using script for additional logic you can do that as well.
Something like this to assign the issue to a user that you can get from the component lead.
def issueService = ComponentAccessor.getIssueService()
def validateAssignResult = issueService.validateAssign(user, issue.id, issue.reporterId)
issueService.assign(user, validateAssignResult)
Ravi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register Now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.