
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@commercetools/github-labels
Advanced tools
A cli for managing GitHub labels.
with npm:
npm install @commercetools/github-labels --save-dev
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"
If you don't have a labels config file yet, you can initialize one by running:
github-labels init
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.
{
"id": 1336719046,
"name": "bug",
"color": "8eedc7",
"description": "Something isn't working"
}
Data | Required | Type |
---|---|---|
id | no | Id (Created by GitHub) |
name | yes | String (Native emojis can be added) |
color | yes | String (hexadecimal color code without the leading #) |
description | no | String |
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
FAQs
Manage Labels of a Repository
We found that @commercetools/github-labels demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.