Hi Everyone,
I’m trying to setup custom issue hierarchy in eazybi
Initiative/Project → Epic → KR/Component → Story → Task
(Issue link → Epic Link → Issue Link → Issue Link)
I have used below configuration in eazybi settings, however I get hierarchy from Epic to Task only, Initiative is not included in the hierarchy even though link is valid and exists between issues
Any thoughts would be helpful
below is the configuration
*[jira.customfield_initiative]
name = “Initiative”
inward_link = “Epic to Initiative”
issue_type = “Initiative/Project”
dimension = true
update_from_issue_key = “customfield_epice”
[jira.customfield_epice]
name = “E Epic”
inward_link = “has Epic”
issue_type = “Epic”
dimension = true
update_from_issue_key = “customfield_kr”
[jira.customfield_kr]
name = “KR Component”
inward_link = “Story to KR Component”
issue_type = “KR/Component”
dimension = true
update_from_issue_key = “customfield_story”
[jira.customfield_story]
name = “Story”
inward_link = “Tasks to Story”
issue_type = “Story”
dimension = true
update_from_issue_key = “parent_issue_key”
[[jira.issue_hierarchies]]
name = “Initiative”
all_member_name = “All Issues by Initiative”
levels = [
{name=“Initiative”, issue_type = “Initiative/Project”, key_column=“customfield_initiative”},
{name = “Epic”, key_column=“customfield_epice”, issue_type=“Epic”},
{name=“KR/Component”,key_column=“customfield_kr”, issue_type=“KR/Component”},
{name=“Story”,key_column=“customfield_story”,issue_type=“Story”},
{name=“Task”, issue_type=“Task”, key_column=“subtask_parent_key”}
]*