Get epic summary from key name? #445
-
I have my epic key, but I'd also like to use it in a script so if I somehow can just resolve the summary from the epic key, that would be great. (so no pretty-printing please, json is even better) |
Beta Was this translation helpful? Give feedback.
Answered by
ankitpokhrel
Aug 26, 2022
Replies: 1 comment 1 reply
-
Hi @guysv, you can use jira issue list -q"key=ISS-1" --plain --no-headers --columns=summary | awk '{$1="";print $0}' |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
guysv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @guysv, you can use
jira issue view <KEY>
to view epic descriptions. If you want to get a summary of an issue/epic with a key you can do something like this.