Skip to content

bukinoshita/git-labels

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

git-labels Build Status

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.

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

Github access token

Related

License

MIT © Bu Kinoshita