jiraq

command
v0.0.0-...-e526b14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 12, 2025 License: ISC Imports: 9 Imported by: 0

Documentation

Overview

Command jiraq lists Jira issues matching the provided Jira query. Queries must be provided as a single quoted argument in JQL format, such as "project = EXAMPLE and status = Done".

Its usage is:

jiraq [ -u url ] query

The flags are:

-u url
	The URL pointing to the root of the JIRA REST API.

Examples

Print an overview of all open tickets in the project "SRE":

jiraq -u https://company.example.net 'project = SRE and status != done'

Subsequent examples omit the "-u" flag for brevity. List all open tickets assigned to yourself in the project "SRE":

jiraq 'project = SRE and status != done and assignee = currentuser()'

Print issues updated since yesterday:

query='project = SRE and status != done and updated >= -24h'
jiraexport `jiraq "$query" | awk '{print $1}'`

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL