{"id":19180443,"url":"https://github.com/shanduur/labeler","last_synced_at":"2026-04-21T13:01:22.445Z","repository":{"id":175325637,"uuid":"653713340","full_name":"shanduur/labeler","owner":"shanduur","description":"Declarative GitHub Label Syncing CLI Tool","archived":false,"fork":false,"pushed_at":"2025-02-10T23:04:02.000Z","size":141,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-23T01:46:09.585Z","etag":null,"topics":["cli","github","labels"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shanduur.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-14T15:18:02.000Z","updated_at":"2024-12-25T18:06:46.000Z","dependencies_parsed_at":"2023-11-23T22:24:16.451Z","dependency_job_id":"9e239eab-9bbe-4f41-9c79-be7ce7c1ad3b","html_url":"https://github.com/shanduur/labeler","commit_stats":null,"previous_names":["shanduur/labeler"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/shanduur/labeler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanduur%2Flabeler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanduur%2Flabeler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanduur%2Flabeler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanduur%2Flabeler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shanduur","download_url":"https://codeload.github.com/shanduur/labeler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shanduur%2Flabeler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32093156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","github","labels"],"created_at":"2024-11-09T10:49:24.366Z","updated_at":"2026-04-21T13:01:22.419Z","avatar_url":"https://github.com/shanduur.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Labeler - Declarative GitHub Label Syncing CLI Tool\n\n[![GitHub Release](https://img.shields.io/github/v/release/shanduur/labeler)](https://github.com/shanduur/labeler/releases/latest)\n[![GitHub License](https://img.shields.io/github/license/shanduur/labeler)](LICENSE)\n\nLabeler is a command-line interface (CLI) tool designed to facilitate the declarative synchronization of GitHub labels across repositories. This tool provides an efficient and convenient way to manage labels in a GitHub repository by enabling users to define label configurations in a YAML file and then apply or retrieve these configurations using the provided commands.\n\n## Table of Contents\n\n- [Labeler - Declarative GitHub Label Syncing CLI Tool](#labeler---declarative-github-label-syncing-cli-tool)\n  - [Table of Contents](#table-of-contents)\n  - [Usage](#usage)\n    - [Uploading Labels](#uploading-labels)\n    - [Downloading Labels](#downloading-labels)\n  - [Configuration File](#configuration-file)\n  - [Examples](#examples)\n  - [License](#license)\n  - [Changelog](#changelog)\n\n## Usage\n\n### Uploading Labels\n\nTo sync labels from a file to a GitHub repository, use the following command:\n\n```bash\nlabeler upload [options] \u003cpath-to-labels-file\u003e\n```\n\nExample:\n\n```bash\nlabeler upload --repository \u003cowner\u003e/\u003crepo\u003e examples/cli/labels.yaml\n```\n\n### Downloading Labels\n\nTo download and print GitHub repository labels to a file, use the following command:\n\n```bash\nlabeler download [options] \u003cpath-to-output-file\u003e\n```\n\nExample:\n\n```bash\nlabeler download --repository \u003cowner\u003e/\u003crepo\u003e examples/cli/labels.yaml\n```\n\n**Note:** Replace `\u003cowner\u003e/\u003crepo\u003e` with the GitHub owner and repository name you intend to work with.\n\n## Configuration File\n\nThe configuration file for Labeler is a YAML file that defines the labels and their attributes to be synchronized with a GitHub repository. Below is an example of a label configuration file:\n\n```yaml\n- name: dependency\n  color: '#dadada'\n  description: Dependency updates\n- name: feature-request\n  color: '#61dafb'\n  description: Request for a new feature or enhancement\n- name: documentation\n  color: '#007bc7'\n  description: Issues related to documentation\n- name: bug\n  color: '#d73a4a'\n  description: Something isn't working as expected\n```\n\nIn this example, each label is defined with the following attributes:\n- **name:** The name of the label.\n- **color:** The color associated with the label, specified in hexadecimal format.\n- **description:** A brief description of the label's purpose or meaning.\n\nEnsure that the configuration file adheres to the YAML syntax, and you can customize it according to your project's specific label requirements.\n\n## Examples\n\nExample label configurations are provided in the `examples` directory for different scenarios, including CLI, Kubernetes, and Moby projects.\n\n## License\n\nLabeler is licensed under the [MIT License](LICENSE).\n\n## Changelog\n\nCheck out the [Changelog](CHANGELOG.md) to see the release history and updates.\n\nFor detailed information on commands and options, run `labeler help`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshanduur%2Flabeler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshanduur%2Flabeler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshanduur%2Flabeler/lists"}