3.0Kпросмотров
27 февраля 2025 г.
Score: 3.3K
jira-cli JiraCLI is an interactive command line tool for Atlassian Jira that will help you avoid Jira UI to some extent. This tool may not be able to do everything, but it has all the essential features required to improve your day-to-day workflow with Jira. 🔥 Feature-rich interactive Jira command line.
#jira #cli #golang
https://github.com/ankitpokhrel/jira-cli # List recent issues
$ jira issue list # List issues created in last 7 days
$ jira issue list --created -7d # List issues in status "To Do"
$ jira issue list -s"To Do" # List recent issues in plain mode
$ jira issue list --plain # List issue in the same order as you see in the UI
$ jira issue list --order-by rank --reverse # You can execute raw JQL within a given project context using --jql/-q option.
# For instance, the following command will list issues in the current project whose
# summary has a word cli.
$ jira issue list -q "summary ~ cli"