{"id":37215575,"url":"https://github.com/tnagatomi/takolabel","last_synced_at":"2026-01-15T00:55:50.893Z","repository":{"id":45409873,"uuid":"359115563","full_name":"tnagatomi/takolabel","owner":"tnagatomi","description":"CLI tool for manipulating GitHub Labels across multiple repositories","archived":false,"fork":false,"pushed_at":"2024-12-24T03:02:48.000Z","size":386,"stargazers_count":10,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-12-24T03:40:46.463Z","etag":null,"topics":["cli","github","go","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/tnagatomi.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2021-04-18T10:46:26.000Z","updated_at":"2024-12-24T02:58:06.000Z","dependencies_parsed_at":"2022-09-12T18:41:05.632Z","dependency_job_id":"985d23d4-26e5-4727-bd86-dc9577e98901","html_url":"https://github.com/tnagatomi/takolabel","commit_stats":{"total_commits":84,"total_committers":1,"mean_commits":84.0,"dds":0.0,"last_synced_commit":"ec586d677d2418c5eb359714cf078f0c508cea58"},"previous_names":["tnagatomi/takolabel","tommy6073/takolabel"],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/tnagatomi/takolabel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Ftakolabel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Ftakolabel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Ftakolabel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Ftakolabel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tnagatomi","download_url":"https://codeload.github.com/tnagatomi/takolabel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Ftakolabel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28440916,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"ssl_error","status_checked_at":"2026-01-15T00:55:20.945Z","response_time":107,"last_error":"SSL_read: 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","go","labels"],"created_at":"2026-01-15T00:55:50.103Z","updated_at":"2026-01-15T00:55:50.862Z","avatar_url":"https://github.com/tnagatomi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!NOTE]\n\u003e This tool is deprecated and archived, use [gh-fuda](https://github.com/tnagatomi/gh-fuda) for the similar functionalities.\n\n# takolabel\n\n`takolabel` is a CLI tool for manipulating GitHub Labels across multiple repositories.\n\n## Installation\n\n### macOS\n\n```console\n$ brew install tnagatomi/tap/takolabel\n```\n\n### Other platforms\n\nDownload packaged binaries from [Releases page](https://github.com/tnagatomi/takolabel/releases) in this repository.\n\n## Usage\n\nSet environment variables below (via `export` command etc.).\n\n- TAKOLABEL_TOKEN (required)\n  - GitHub Personal access token. A token with `repo` scope is needed if it will be run on a private repository. `public_repo` scope will suffice if it's a public repository.\n- TAKOLABEL_HOST (optional)\n  - Set this variable to the host URL (e.g. `https://ghe.example.com/`) if you want to work with repositories hosted on GitHub Enterprise Server. Manipulations will take place in `github.com` repositories if you didn't set this variable.\n\n`--dry-run` for all operations are supported.\n\n### Create Labels\n\n```console\n$ takolabel create\n```\n\nCreate labels to the repositories specified in the YAML file.\n\nWrite labels settings in `takolabel_create.yml` and put in the same directory as the one where you run the command.\n\ne.g.\n\n```yaml\nrepositories:\n  - some-owner/some-owner-repo-1\n  - some-owner/some-owner-repo-2\n  - another-owner/another-owner-repo-1\nlabels:\n  - name: Label 1\n    description: This is the label one \n    color: ff0000\n  - name: Label 2\n    description: This is the label two\n    color: 00ff00\n  - name: Label 3\n    description: This is the label three\n    color: 0000ff\n```\n\n### Delete Labels\n\n```console\n$ takolabel delete\n```\n\nDelete labels in the repositories specified in the YAML file.\n\nWrite labels settings in `takolabel_delete.yml` and put in the same directory as the one where you run the command.\n\ne.g.\n\n```yaml\nrepositories:\n  - some-owner/some-owner-repo-1\n  - some-owner/some-owner-repo-2\n  - another-owner/another-owner-repo-1\nlabels:\n  - Label 1\n  - Label 2\n  - Label 3\n```\n\n### Sync Labels\n\n```console\n$ takolabel sync\n```\n\nSync labels in the repositories to those of specified in the YAML file.\n\nWrite labels settings in `takolabel_sync.yml` and put in the same directory as the one where you run the command.\n\ne.g.\n\n```yaml\nrepositories:\n  - some-owner/some-owner-repo-1\n  - some-owner/some-owner-repo-2\n  - another-owner/another-owner-repo-1\nlabels:\n  - name: Label 1\n    description: This is the label one\n    color: ff0000\n  - name: Label 2\n    description: This is the label two\n    color: 00ff00\n  - name: Label 3\n    description: This is the label three\n    color: 0000ff\n```\n\n### Empty Labels\n\n```console\n$ takolabel empty\n```\n\nDelete all the labels in the repositories specified in the YAML file.\n\nWrite repositories settings in `takolabel_empty.yml` and put in the same directory as the one where you run the command.\n\ne.g.\n\n```yaml\nrepositories:\n  - some-owner/some-owner-repo-1\n  - some-owner/some-owner-repo-2\n  - another-owner/another-owner-repo-1\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftnagatomi%2Ftakolabel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftnagatomi%2Ftakolabel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftnagatomi%2Ftakolabel/lists"}