Skip to content

Instantly share code, notes, and snippets.

@Velrok
Last active June 17, 2022 11:39
Show Gist options
  • Save Velrok/ab01f8cef9612cea7cfeb3bfb1740ae7 to your computer and use it in GitHub Desktop.
Save Velrok/ab01f8cef9612cea7cfeb3bfb1740ae7 to your computer and use it in GitHub Desktop.
List and preview active tickets. Fuzzy search and preview via fzf.
#!/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