Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@commercetools/github-labels

Package Overview
Dependencies
Maintainers
9
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@commercetools/github-labels

Manage Labels of a Repository

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
9
Created
Source

GitHub Labels

Scope

A cli for managing GitHub labels.

Getting Started

  • Install the Label Manager

with npm:

npm install @commercetools/github-labels --save-dev
  • Define the authentication token

Generate a new GitHub AUTH_TOKEN and write it into your .env file. The token should only need the public_repo scope (for public repositories) or repo (for private repositories).

AUTH_TOKEN="your-token"
  • Initialize the labels config

If you don't have a labels config file yet, you can initialize one by running:

github-labels init

Manage your labels

GitHub labels are managed through the labels config file. The config must be in JSON format and can be defined in the following files:

  • package.json, under the name github-labels
  • .github-labelsrc
  • .github-labelsrc.json

If you don't have this file yet, follow the given instructions above. In this file, you can see all your current label data. If you want to change something on your labels, just modify the file as you like. After modifying, save your changes and run the command below:

github-labels sync

This will synchronize the config file with your GitHub repository. If you want to see your changes, just go to your label settings on GitHub to see your current labels.

Config structure:

{
  "id": 1336719046,
  "name": "bug",
  "color": "8eedc7",
  "description": "Something isn't working"
}

Required fields:

DataRequiredType
idnoId (Created by GitHub)
nameyesString (Native emojis can be added)
coloryesString (hexadecimal color code without the leading #)
descriptionnoString

Reuse the same config across different repositories

If you have installed github-labels in your repository, yo can simply copy-paste the .github-labelsrc.json file into your new repository. After that, remove the ids of each label and synchronize them with GitHub:

github-labels sync

Keywords

commercetools

FAQs

Package last updated on 11 Jul 2019

Did you know?

Socket

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.

Install

Related posts