Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Can a story/task inherit details from epic?

Rethabile Morena February 10, 2015

Good day,

 

Please advise if a story can inherit certain field information from the linked epic?

 

Meaning once we capture the epic name on the story/task issue, certain information from the epic will automatically be captured on the story/task.

 

Regards

Rethabile M

 

1 answer

1 accepted

1 vote
Answer accepted
Thomas Heidenreich
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 10, 2015

You could write a Scripted Field with the Script Runner Plugin for that - an example for displaying the Due Date of the Epic would be:

import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.CustomFieldManager
def customFieldManager = ComponentManager.getInstance().getCustomFieldManager();
def cf = customFieldManager.getCustomFieldObjects(issue).find {it.name == "Epic Link"}
        
def issueManager = ComponentManager.getInstance().getIssueManager();
issueManager.getIssueObject(issue.getCustomFieldValue(cf).getKey()).getDueDate()
Tarun Sapra
Community Champion
January 11, 2017

Nice answer, though I will use ComponentAccessor instead of the Component Manager.

Suggest an answer

Log in or Sign up to answer