{"id":15400681,"url":"https://github.com/paebbels/synchronizeforks","last_synced_at":"2026-01-19T11:01:33.639Z","repository":{"id":89939121,"uuid":"576581704","full_name":"Paebbels/SynchronizeForks","owner":"Paebbels","description":"Synchronize forks on GitHub.","archived":false,"fork":false,"pushed_at":"2025-11-29T16:25:31.000Z","size":166,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-01T19:29:12.988Z","etag":null,"topics":["action","automated","forked-repo","github-cli","scheduled-jobs","synchronization"],"latest_commit_sha":null,"homepage":"","language":null,"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/Paebbels.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-12-10T09:57:09.000Z","updated_at":"2025-11-29T16:25:35.000Z","dependencies_parsed_at":"2025-07-29T16:07:56.077Z","dependency_job_id":"78fec31b-cecd-4c93-9ba2-abae2159275f","html_url":"https://github.com/Paebbels/SynchronizeForks","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"9788accd7c294851f0b71fc78225fdeb8a6f5361"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Paebbels/SynchronizeForks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paebbels%2FSynchronizeForks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paebbels%2FSynchronizeForks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paebbels%2FSynchronizeForks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paebbels%2FSynchronizeForks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Paebbels","download_url":"https://codeload.github.com/Paebbels/SynchronizeForks/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paebbels%2FSynchronizeForks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28565874,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T08:53:44.001Z","status":"ssl_error","status_checked_at":"2026-01-19T08:52:40.245Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["action","automated","forked-repo","github-cli","scheduled-jobs","synchronization"],"created_at":"2024-10-01T15:54:40.782Z","updated_at":"2026-01-19T11:01:33.634Z","avatar_url":"https://github.com/Paebbels.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Auto Synchronize forked repositories\n\nThis repository automates the synchronization of forked repositories for the GitHub namespace `Paebbels`. The\n[GitHub Action pipeline](https://github.com/Paebbels/SynchronizeForks/blob/main/.github/workflows/Synchronize.yml) can\nbe copied to another repository and configuration files (`*.repos`) can be adjusted to achieve the same functionality\nfor other namespaces.\n\nThis code is licensed under [MIT License](LICENSE.md).\n\n\n## Example Pipeline Log\n\n![GitHub Action log](Pipeline.png)\n\n## Steps to Setup\n\n1. Create a repository like `SynchronizeForks` in your namespace.\n2. Copy these files:\n   * [README.md](https://github.com/Paebbels/SynchronizeForks/blob/main/README.md)\n   * [LICENSE.md](https://github.com/Paebbels/SynchronizeForks/blob/main/LICENSE.md)\n   * [.github/workflows/Synchronize.yml](https://github.com/Paebbels/SynchronizeForks/blob/main/.github/workflows/Synchronize.yml)\n   * [.ALL.repos](https://github.com/Paebbels/SynchronizeForks/blob/main/.ALL.repos)\n3. Configure `*.repos` files.\n4. Push the commit and check the Action for success.\n\n\n## Configuration File Formats\n\nThe `.ALL.repos` file is the entry point for the script listing all GitHub organisations that should be synchronized.\nIt lists one organisation per line or alternatively a comment starting with `#`. In case many single repositories from\nvarious organisations or private accounts should be synchronized, it's recommended to add an `_Others` or `_Misc` entry.\n\n**Example:**\n```\nghdl\nOSVVM\n_Others\n```\n\nEach organisation has a matching `*.repos` file contains one repository per line. Alternatively, a comment starting\nwith `#`. A repository line has the following format:  \n`\u003cupstream\u003e=\u003clocalRepository\u003e:\u003cbranches\u003e`\n\n* `\u003cupstream\u003e` is formatted like `\u003corganisation\u003e/\u003crepository\u003e` or `\u003cprivateAccount\u003e/\u003crepository\u003e`.\n* `\u003clocalRepository\u003e` is formatted like `\u003crepository\u003e`.  \n  An account or organisation is not required, because it's inferred from the repository this script runs in.\n* `\u003cbranches\u003e` is a comma separated list of branch names like `\u003cbranch\u003e,\u003cbranch\u003e,\u003cbranch\u003e`.\n\t\n**Example:**\n```\nOSVVM/OSVVM=OSVVM:main,dev\nOSVVM/AXI4=OSVVM-AXI4:main,dev\n#OSVVM/AvalonST=OSVVM-AvalonST:main\n```\n\n\n## Synchronize repositories\n\n* ghdl\n  * GHDL\n* OSVVM\n  * OSVVM\n  * OSVVM-Libraries\n  * OSVVM-Scripts\n  * OSVVM-Common\n  * OSVVM-AXI4\n  * OSVVM-UART\n  * OSVVM-DPRAM\n  * OSVVM-CoSim\n  * OSVVM-Ethernet\n  * OSVVM-Documentation\n* *others*\n  * progit2\n  * msys2/MINGW-packages\n  * antonblanchard/microwatt\n  * BR1py/itertree\n\n\n## GitHub CLI Documentation\n\nSee https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork\n\n\n# License\n\nThis GitHub Action Example (source code) is licensed under [MIT License](LICENSE.md).\n\n-------------------------\nSPDX-License-Identifier: MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaebbels%2Fsynchronizeforks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaebbels%2Fsynchronizeforks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaebbels%2Fsynchronizeforks/lists"}