git-labels
v1.1.2
Published
Creating Github issue labels
Downloads
10
Readme
git-labels
Creating Github issue labels
Install
$ yarn add git-labels
Usage
const gitLabels = require('git-labels')
const project = 'bukinoshita/git-labels'
const labels = [{ name: 'bug', color: 'cb2431' }]
const token = $token
await gitLabels({ project, labels, token })
// => 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.
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