![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
JIRA CLI focused on simple ticket creation, written in Node.
> npm install -g jicli
On first usage, run jicli
and you will be asked for your Jira credentials:
> jicli
Jira host: example.atlassian.com
Jira username : user1
Jira password: ***********
HTTP protocol (http or https) https
Config settings will be saved in <project-root>/.jicli/config.json
.
Run jicli
or jicli --help
to get usage:
Usage: jicli [options] [command]
Commands:
create [options] Create a new issue
Options:
-h, --help output usage information
-V, --version output the version number
Usage: create [options]
Create a new issue
Options:
-h, --help output usage information
-p, --project [key] Project key
-t, --issue-type [type] Issue type (numeric or enum{task, story, sub-task, epic, bug})
-s, --summary [string] Summary (title)
-d, --description [string] Description (opens in editor)
-x, --skip-description Skip entering the description field
-l, --labels [l1,l2,l3] Labels (comma-delimited)
-a, --assignee [username] Assignee (use `me` to assign to yourself)
Usage: config [options]
Re-initialize your config
Options:
-h, --help output usage information
Jicli uses the find-config
package to look for the .jicli
folder. The order used:
/
If not found, the following is done to determine where to create the .jicli
folder:
package.json
file, create folder herepackage.json
until you hit /
Create issue interactively with prompts:
jicli create
? Project: Mobile
? Issue Type: Task
? Issue Title: My new issue
Supply some of the required fields and jicli will ask for the missing items:
jicli create -p MOB -t Task
? Issue Title: My new issue
Notice that project and issue type prompts are skipped
Holy grail with all required and optional fields ()
jicli create -p MOB -t task -s "My issue title" -d "My issue description" -l 'label1,label2' -a me
When you first set up jicli, it will prompt for your username / password. From this, it will create a token and add
it to the config file <root>/.jicli/config.json
Project uses debug module with debug key jicli
. Run:
DEBUG=jicli* jicli create ...
This will add additional debugging information to file <root>/.jicli/logger.log
instead of stdout as it's awkward to output to the console while requesting stdin.
PRs accepted. Note that code uses standard styling.
MIT © Dan Caddigan
FAQs
Jira CLI focused on flexible ticket creation
We found that jicli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.