Custom hierarchy for issues

Hello @oskars.laganovskis

Thanks a lot for responding. Tried the below and it works. I had help from @roberts.cacus as well. I am detailing the formula that was implemented so that it benefits a lot of folks who will be looking for a solution.

[jira.customfield_istory]
name = "Implements Story"
outward_link = "implements"
issue_type = "User Story"

[jira.customfield_ifeature]
name = "Implements Feature"
outward_link = "implements"
issue_type = "New Feature"
update_from_issue_key = "customfield_istory"

[jira.customfield_iepic]
name = "Implements Epic"
outward_link = "implements"
issue_Type = "Epic"
update_from_issue_key = "customfield_ifeature"

[[jira.issue_hierarchies]]
name = "Implementations"
all_member_name = "All Implemented issues"
levels = [
  {name="Implements Epic",key_column="customfield_iepic",issue_type="Epic"},
  {name="Implements Feature",key_column="customfield_ifeature",issue_type="New Feature"},
  {name="Implements Story",key_column="customfield_istory",issue_type="User Story"}
]

1 Like