Skip to content

mr-pmillz/jira-search

Repository files navigation

Jira-Search

Go Report Card GitHub all releases GitHub repo size GitHub go.mod Go version GitHub release (latest by date) GitHub commit activity Twitter CI codecov

Table of Contents

About

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

Docs

Installation

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

Usage

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.

Example Usage

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\")'"