{"id":38040165,"url":"https://github.com/tnagatomi/gh-mrlabel","last_synced_at":"2026-01-16T19:53:43.263Z","repository":{"id":223075619,"uuid":"759256670","full_name":"tnagatomi/gh-mrlabel","owner":"tnagatomi","description":"gh extension for manipulating labels across multiple repositories","archived":false,"fork":false,"pushed_at":"2024-04-07T13:11:40.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-23T11:18:45.139Z","etag":null,"topics":["cli","gh","gh-extension","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":"2024-02-18T04:29:52.000Z","updated_at":"2024-06-21T05:50:50.576Z","dependencies_parsed_at":"2024-02-25T05:26:11.533Z","dependency_job_id":"c3e3b447-b55d-469a-873b-e541f6b9bdfb","html_url":"https://github.com/tnagatomi/gh-mrlabel","commit_stats":null,"previous_names":["tnagatomi/gh-mrlabel"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/tnagatomi/gh-mrlabel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Fgh-mrlabel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Fgh-mrlabel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Fgh-mrlabel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Fgh-mrlabel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tnagatomi","download_url":"https://codeload.github.com/tnagatomi/gh-mrlabel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tnagatomi%2Fgh-mrlabel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28482103,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","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","gh","gh-extension","github","go","labels"],"created_at":"2026-01-16T19:53:42.560Z","updated_at":"2026-01-16T19:53:43.255Z","avatar_url":"https://github.com/tnagatomi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!IMPORTANT]\n\u003e This repository has been transferred to https://github.com/tnagatomi/gh-fuda\n\n# gh-mrlabel\n\n`gh-mrlabel` is a gh extension for manipulating labels across multiple repositories\n\n## Installation\n\nInstall as a [gh](https://cli.github.com/) extension (ref. [gh manual of gh extension install](https://cli.github.com/manual/gh_extension_install)).\n\n```console\n$ gh extension install tnagatomi/gh-mrlabel\n```\n\n## Usage\n\nLogin to GitHub with `gh auth login` (ref. [gh manual of gh auth login](https://cli.github.com/manual/gh_auth_login)) so that the extension can access the repositories.\n\n### Global Options\n\n- `-R`, `--repos`: Select repositories using the `OWNER/REPO` format separated by comma (e.g., `owner1/repo1,owner2/repo1`)\n- `--dry-run`: Check what operations would be executed without actually operating on the repositories\n\n### List of Commands\n\n#### Create Labels\n\n```console\n$ gh mrlabel create\n```\n\nCreate specified labels to the specified repositories.\n\n##### Options\n\n- `-l`, `--label`: Specify the labels to create in the format of `'label1:color1:description1[,label2:color2:description2,...]'` (description can be omitted)\n\n##### Example\n\n```console\n$ gh mrlabel create -R \"owner1/repo1,owner1/repo2,owner2/repo1\" -l \"label1:ff0000:description for label 1,label2:00ff00,label3:0000ff\"\n```\n\n#### Delete Labels\n\n```console\n$ gh mrlabel delete\n```\n\nDelete specified labels from the specified repositories.\n\n##### Options\n\n- `-l`, `--label`: Specify the labels to delete in the format of `'label1[,label2,...]'`\n- `--force`: Do not prompt for confirmation\n\n##### Example\n\n```console\n$ gh mrlabel delete -R \"owner1/repo1,owner1/repo2,owner2/repo1\" -l \"label1,label2,label3\"\n```\n\n#### Sync Labels\n\n```console\n$ gh mrlabel sync\n```\n\nSync the labels in the specified repositories with the specified labels.\n\n##### Options\n\n- `-l`, `--label`: Specify the labels to set in the format ofSpecify the labels to set in the format of `'label1:color1:description1[,label2:color2:description2,...]'` (description can be omitted)\n- `--force`: Do not prompt for confirmation\n\n##### Example\n\n```console\n$ gh mrlabel sync -R \"owner1/repo1,owner1/repo2,owner2/repo1\" -l \"label1:ff0000:description for label 1,label2:00ff00,label3:0000ff\"\n```\n\n#### Empty Labels\n\n```console\n$ gh mrlabel empty\n```\n\nDelete all labels from the specified repositories.\n\n##### Options\n\n- `--force`: Do not prompt for confirmation\n\n##### Example\n\n```console\n$ gh mrlabel empty -R \"owner1/repo1,owner1/repo2,owner2/repo1\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftnagatomi%2Fgh-mrlabel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftnagatomi%2Fgh-mrlabel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftnagatomi%2Fgh-mrlabel/lists"}