git-labels
Creating Github issue labels
Install
$ yarn add git-labels
Usage
const gitLabels = const project = 'bukinoshita/git-labels'const labels = name: 'bug' color: 'cb2431' const token = $token await // => Done!
Why
I've been using Github issues labels a lot these days, but I never liked the default ones. So every project I have to manually delete/create/update
my issues labels with the colors and names I want. This can be done with a single command using this module.
Before | After |
---|---|
labels names and colors are customizable.
API
gitLabels({ project, labels, token })
project
Type: string
Format: org/repo
Required
Github project.
labels
Type: array
Format: [ { name: NAME, color: COLOR }, ... ]
Default: labels.json
Labels to be created
token
Type: string
Required
Related
- git-labels-cli — CLI for this module
License
MIT © Bu Kinoshita