{"id":41429279,"url":"https://github.com/ccremer/greposync-action","last_synced_at":"2026-01-23T14:25:31.685Z","repository":{"id":42000219,"uuid":"382860021","full_name":"ccremer/greposync-action","owner":"ccremer","description":"GitHub Action for ccremer/greposync","archived":false,"fork":false,"pushed_at":"2025-11-20T16:36:49.000Z","size":37,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-19T22:57:30.446Z","etag":null,"topics":["git","modulesync"],"latest_commit_sha":null,"homepage":"https://ccremer.github.io/greposync","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ccremer.png","metadata":{"files":{"readme":"README.adoc","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":"2021-07-04T13:34:06.000Z","updated_at":"2021-12-08T20:23:11.000Z","dependencies_parsed_at":"2022-08-12T01:51:06.186Z","dependency_job_id":null,"html_url":"https://github.com/ccremer/greposync-action","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/ccremer/greposync-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccremer%2Fgreposync-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccremer%2Fgreposync-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccremer%2Fgreposync-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccremer%2Fgreposync-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ccremer","download_url":"https://codeload.github.com/ccremer/greposync-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccremer%2Fgreposync-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28694082,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T14:15:13.573Z","status":"ssl_error","status_checked_at":"2026-01-23T14:09:05.534Z","response_time":59,"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":["git","modulesync"],"created_at":"2026-01-23T14:25:30.957Z","updated_at":"2026-01-23T14:25:31.671Z","avatar_url":"https://github.com/ccremer.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"= ccremer/greposync-action\n:major-version: v0\n\nimage:https://img.shields.io/github/v/release/ccremer/greposync-action[Version,link=https://github.com/ccremer/greposync-action/releases]\n\nGitHub Action for https://github.com/ccremer/greposync[ccremer/greposync]\n\nDocumentation::\nhttps://ccremer.github.io/greposync[ccremer.github.io/greposync]\n\n== Setup\n\n=== Configure the step\n\nSpecify the action as part of your GitHub actions workflow:\n\n[source,yaml,subs=attributes]\n----\n- name: Run greposync\n  uses: ccremer/greposync-action@{major-version}\n  env:\n    GITHUB_TOKEN: ${{ secrets.GREPOSYNC_TOKEN }}\n  with:\n    args: update --help\n----\n\n[TIP]\n====\n`${{ secrets.GITHUB_TOKEN }}` only grants rights to the current repository, which makes no sense for greposync as it clones and manages other repositories.\nUse a PAT (Personal Access Token) instead.\n====\n\n=== Full example\n\n[source,yaml,subs=attributes]\n----\nname: Sync\n\non:\n  workflow_dispatch:\n    inputs:\n      filter:\n        description: 'Filter sync for a specific repository (exact name or regex)'\n        required: false\n        default: ''\n  push:\n    branches:\n      - master\n      - main\n\njobs:\n  update:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2\n      - name: Configure Git\n        run: |\n          git config --global user.name \"$GITHUB_ACTOR\"\n          git config --global user.email \"$GITHUB_ACTOR@users.noreply.github.com\"\n      - name: Setup SSH\n        uses: webfactory/ssh-agent@v0.5.3\n        with:\n            ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}\n      - name: Run greposync\n        uses: ccremer/greposync-action@{major-version}\n        env:\n          GITHUB_TOKEN: ${{ secrets.GREPOSYNC_TOKEN }}\n        with:\n          args: update --pr --filter=${{ github.event.inputs.filter }}\n----\n\n== Customization\n\n=== Configuration\n\n[source,yaml,subs=attributes]\n----\n- name: Run greposync\n  uses: ccremer/greposync-action@{major-version}\n  with:\n    version: latest\n    args: update --pr\n----\n\n.Parameters\n|===\n| Input | Description | Default\n\n| `version`\n| The release version greposync to install.\n  Must match the exact tag.\n  Use `latest` to install the latest stable release.\n| `latest`\n\n| `args`\n| A string of arguments to pass to greposync.\n  This value is required!\n|\n|===\n\n== Contribute\n\nSee available `make` targets with\n\n[source,bash]\n----\n$ make help\n----\n\nWhen creating a PR, please fill in the PR template as best as you know.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccremer%2Fgreposync-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fccremer%2Fgreposync-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccremer%2Fgreposync-action/lists"}