@reagent/jira
v0.3.0
Published
Manage Jira tickets from the commandline
Downloads
4
Readme
Jira Commandline Helper
This is just a little CLI tool to help manage my Jira workflow while avoiding the UI as much as possible.
Installation
yarn global add @reagent/jira
Usage
Before you can interact with the API, you'll need to create an API token from your token management page. Once you have a token, you can initialize your local configuration:
jira init
Enter details about your Jira instance (including yoru access stoken) at the
prompt and these will be written to the global configuration file
(~/.config/jira/config.json
). You can now try out some commands to test your
credentials:
# See all tickets assigned to you
jira tickets --all
# See tickets that you're watching
jira tickets:watching
To see only active tickets, configure what you consider "active" statuses:
jira statuses:add "In Progress"
jira statuses:add "Accepted"
Now your list of tickets will be filtered on these active statuses by default:
jira tickets
For additional commands, see jira --help
.