{"id":17110099,"url":"https://github.com/seiffert/ghsync","last_synced_at":"2026-04-28T20:37:00.284Z","repository":{"id":64304648,"uuid":"80956166","full_name":"seiffert/ghsync","owner":"seiffert","description":"Synchronize configuration across GitHub repositories","archived":false,"fork":false,"pushed_at":"2017-02-18T09:06:38.000Z","size":34,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-23T21:46:26.137Z","etag":null,"topics":["github"],"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/seiffert.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}},"created_at":"2017-02-04T23:40:05.000Z","updated_at":"2017-06-13T15:21:50.000Z","dependencies_parsed_at":"2023-01-15T10:15:53.605Z","dependency_job_id":null,"html_url":"https://github.com/seiffert/ghsync","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/seiffert/ghsync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seiffert%2Fghsync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seiffert%2Fghsync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seiffert%2Fghsync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seiffert%2Fghsync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seiffert","download_url":"https://codeload.github.com/seiffert/ghsync/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seiffert%2Fghsync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32398997,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"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":["github"],"created_at":"2024-10-14T16:25:25.250Z","updated_at":"2026-04-28T20:37:00.257Z","avatar_url":"https://github.com/seiffert.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ghsync\n\n[![Build Status](https://travis-ci.org/seiffert/ghsync.svg?branch=master)](https://travis-ci.org/seiffert/ghsync)\n[![Go Report Card](https://goreportcard.com/badge/github.com/seiffert/ghsync)](https://goreportcard.com/report/github.com/seiffert/ghsync)\n[![Code Climate](https://codeclimate.com/github/seiffert/ghsync/badges/gpa.svg)](https://codeclimate.com/github/seiffert/ghsync)\n\n**ghsync** is a CLI tool that allows you to sync configuration specified in a configuration file to multiple GitHub \nrepositories. This is particularly useful when you work with many repositories in your organization that should all \nfollow certain standard configurations. \n\n## Example Usage\n\n```bash\n$ cat ghrepos.yaml\nlabels:\n  foo: '#ffffff'\n  bar: '#000000'\n  \nmilestones:\n  - title: Version 0.1\n    description: All issues that need to be done before release 0.1\n    due: 2017-02-06T12:00:00Z\n    state: closed\n  - title: Version 1.0\n    description: All issues that need to be done before release 1.0\n    due: 2017-03-02T12:00:00Z\n    state: open\n  - title: Version 1.1\n    description: All issues that need to be done before release 1.1\n    due: 2017-03-03T12:00:00Z\n    state: open\n$ echo seiffert/ghsync | ghsync --config ghsync.yaml\nSyncing Labels\nProcessing repository \"seiffert/ghsync\"\n  Found 7 labels\n  Creating label \"foo\": \"ffffff\"\n  Creating label \"bar\": \"000000\"\n  \nSyncing Milestones\nProcessing repository \"seiffert/ghsync\"\n  Found 1 milestones\n  Creating milestone \"Version 1.0\"\n  Creating milestone \"Version 1.1\"\n```\n\nTo authenticate against the GitHub API, **ghsync** requires a GitHub access token.\nGenerate a token one in [your account settings](https://github.com/settings/tokens) and pass it either as environment \nvariable `GITHUB_TOKEN` or via the `--token` option:\n\n```bash\n$ echo seiffert/ghsync | ghsync --token \u003cGITHUB_TOKEN\u003e --config ghsync.yaml\n```\n\nInstead of `echo`ing the repositories manually, you can use my tool [**ghrepos**](https://github.com/seiffert/ghrepos)\nto get a list of repositories with a specific topic:\n\n```\n$ ghrepos -o seiffert github | ghsync --config ghsync.yaml\nProcessing repository \"seiffert/ghrepos\"\n  Found 7 labels\n  Creating label \"bar\": \"000000\"\n  Creating label \"foo\": \"ffffff\"\nProcessing repository \"seiffert/ghsync\"\n  Found 9 labels\n  Label \"foo\": \"ffffff\" already exists\n  Label \"bar\": \"000000\" already exists\n```\n\n## Installation\n\nTo install **ghsync**, download a binary from the provided\n[GitHub releases](https://github.com/seiffert/ghsync/releases) and put it into a folder that is part of your \nsystem's `$PATH`.\n\n## Contribution\n\nIf you have ideas for improving this little tools or just a question, please don't hesitate to open an\n[issue](https://github.com/seiffert/ghsync/issues/new) or even fork this repository and create a pull-request!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseiffert%2Fghsync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseiffert%2Fghsync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseiffert%2Fghsync/lists"}