jira-cli
jira-cli copied to clipboard
Adding an issue to an epic
Is there any way to add an issue to an Epic? Looks like there's epic support in the Jira Python interface.
@lucianocheng I guess we'd have to add support both in issue creation and issue update
@alisaifee that was my thought. I'm going to take a whack at this this weekend, any chance you could give me a pointer in the jira-cli codebase where I could get started?
@lucianocheng for creating an issue that has an epic, you could handle it in a similar manner to how issues with parents are created (https://github.com/alisaifee/jira-cli/blob/master/jiracli/bridge/rest.py#L96)
For updating existing issues, something similar to https://github.com/alisaifee/jira-cli/blob/master/jiracli/bridge/rest.py#L158 could work