Last active
June 17, 2022 11:39
-
-
Save Velrok/ab01f8cef9612cea7cfeb3bfb1740ae7 to your computer and use it in GitHub Desktop.
List and preview active tickets. Fuzzy search and preview via fzf.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
# brew install ankitpokhrel/jira-cli/jira-cli fzf | |
jira issue list \ | |
--columns KEY,STATUS,SUMMARY,RESOLUTION,ASSIGNEE \ | |
--resolution x \ | |
--type ~Epic \ | |
--no-headers \ | |
--status ~Backlog \ | |
--plain \ | |
| tr -s '\t' \ | |
| fzf --preview-window=up,70% --preview='jira issue view $(echo {} | cut -d " " -f 1)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment