Assignee will change throughout the workflow, but would like the componenet lead known throughout this processes on the issue.
You can use the Script Runner plugin (below), which has a script custom field type. Then all you have to do is create a simple script that will show the component's lead. Also, you need to keep in mind that an issue can have more than one component.
https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner
Hi kjacobs,
You can create a custom field to display that information.
The plugin also provides a components issue tab panel to display components related to an issue along with its description and lead.
https://marketplace.atlassian.com/plugins/com.stygian.jira.plugins.projectroles
Cheers
Bhushan
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.
Using Script Runner and creating a Script Field:
import com.atlassian.jira.ComponentManager def componentManager = ComponentManager.getInstance() def leads = issue.componentObjects.toList() if (leads) { def lead = leads?.first()?.lead if (lead) { issue.getComponentObjects().getAt(0)?.getLead() } }
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.