Simple CLI tool to help manage labels across repos
Please see the docs for details on the commands.
$ bin/ghlabels
NAME:
ghlabels - label sync for repos and organizations
USAGE:
ghlabels [global options] command [command options] [arguments...]
COMMANDS:
sync sync labels - rename, sync, delete
config commands for viewing or generating configuration
stats prints out repository stats
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--help, -h show help (default: false)
--version, -v print the version (default: false)
To view the default configuration, run the ghlabels config defaults
command.
$ ghlabels config defaults
The order of operations is:
- Rename
- Sync
- Delete
A custom configuration file can be provided using the --config, -c
flag. The file passed to this config option must
use the following structure. You do not need to have all 3 Top Level sections in the config file for the configuration
to be valid.
By default, the --config, -c
flag will overwrite the default configuration. You can merge the provided configuration
with the default using the
--merge-with-defaults, -m
boolean flag. This will take the default configuration and merge in the user provided
configuration, with the user config taking precedence.
Top Level | Type | Description | Structure |
---|---|---|---|
rename |
List |
List of Label names to rename from a given name to a new name. |
{ from: "string", to: "string" } |
remove |
List |
List of Labels to be deleted from a Repo. | string |
sync |
List |
List of Label configuration that will be used to create or update a given Label. | { name: "string", color: "sting", description: "string" } |
Homebrew (for macOS users)
brew tap clok/ghlabels
brew install ghlabels
$ curl https://i.jpillora.com/clok/ghlabels! | bash
The compiled docker images are maintained on GitHub Container Registry (ghcr.io). We maintain the following tags:
edge
: Image that is build from the currentHEAD
of the main line branch.latest
: Image that is built from the latest released versionx.y.z
(versions): Images that are build from the tagged versions within GitHub.
docker pull ghcr.io/clok/ghlabels
docker run -v "$PWD":/workdir ghcr.io/clok/ghlabels --version
GitHub doesn't support accessing the Organization Repository Defaults via their API
(found here: https://github.com/organizations/<ORG>/settings/repository-defaults
)
I would love to add commands that would allow:
- Generating a configuration based the Organization default settings.
- Sync the Organization defaults to Repos within it.
- Update the default settings based on a configuration manifest.
Unfortunately, the GitHub API does not support interacting with the Organization Repository Defaults, so these items have to remain on the wishlist for now. Please see the GitHub REST API Discussion thread that I opened to request this feature.
- Fork the clok/ghlabels repo
- Use
go >= 1.16
- Branch & Code
- Run linters 🧹
golangci-lint run
- The project uses golangci-lint
- Commit with a Conventional Commit
- Open a PR
We employ git-chglog to manage the CHANGELOG.md. For the versions available, see the tags on this repository.
- Derek Smith - @clok
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details