this is a releatively simple tool for quick searching jira issues via JQL queries and displaying the data in a nice easy to read table
- jira-search - Search Jira Issues via jql queries and others from the cli.
- jira-search search - Search Jira for issues matching text
Download the binary from releases or you can install the program directly via
go install github.com/mr-pmillz/jira-search@latest
create your config.yaml file
cp config.yaml.dist config.yaml
create yourself an api key in your jira account profile
Search Jira Issues via jql queries and others from
the cli.
Usage:
jira-search [command]
Available Commands:
completion Generate the autocompletion script for the specified shell
help Help about any command
search Search Jira for issues matching text
Flags:
--config string config file (default is $HOME/config.yaml)
-h, --help help for jira-search
Use "jira-search [command] --help" for more information about a command.
Search for all issues assigned to you and in various status types
jira-search --config /path/to/your/config.yaml search --jql-raw-search 'assignee = "Babu Bott" AND status in ("Ready for Work", "In Progress")'
Make an alias
alias mywork="jira-search --config /path/to/your/config.yaml search --jql-raw-search 'assignee = \"Babu Bott\" AND status in (\"Ready for Work\", \"In Progress\")'"