{"id":50663817,"url":"https://github.com/bopen/ci-cd","last_synced_at":"2026-06-08T04:33:21.554Z","repository":{"id":357841160,"uuid":"1238764673","full_name":"bopen/ci-cd","owner":"bopen","description":null,"archived":false,"fork":false,"pushed_at":"2026-06-03T08:49:48.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-03T10:23:32.557Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bopen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2026-05-14T12:36:40.000Z","updated_at":"2026-06-03T08:49:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bopen/ci-cd","commit_stats":null,"previous_names":["bopen/ci-cd"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bopen/ci-cd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bopen%2Fci-cd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bopen%2Fci-cd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bopen%2Fci-cd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bopen%2Fci-cd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bopen","download_url":"https://codeload.github.com/bopen/ci-cd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bopen%2Fci-cd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34048681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-06-08T04:33:20.451Z","updated_at":"2026-06-08T04:33:21.546Z","avatar_url":"https://github.com/bopen.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ci-cd\n\n## git-clone Action\n\nA GitHub Action that clones multiple git repositories with specific features.\n\n### Usage\n\nThis action can be used in other repositories' workflows to clone multiple repositories with branch/tag selection support.\n\n**Inputs:**\n- **`repo-list`** (required): Space-separated list of repositories in `org/repo` format to clone\n- **`git-pat`** (optional): Git Personal Access Token for authentication\n\n**Example workflow:**\n\n~~~yaml\n- uses: bopen/ci-cd/git-clone\n  env:\n    REPO1_REF: \"main\"\n    REPO2_REF: \"v1.0.0\"\n  with:\n    repo-list: \"org/repo1 org/repo2\"\n    git-pat: ${{ secrets.GIT_PAT }}\n~~~\n\n### Features\n\n- Clones multiple repositories in a single action step\n- Supports branch/tag selection per repo via environment variables (e.g., `REPO_NAME_REF`)\n- Handles authentication via PAT\n\n## setup-deploy Action\n\nA GitHub Action that sets up a deployment repository by cloning the repository itself and all its dependencies.\n\n### Usage\n\nThis action can be used in workflows to prepare a deployment environment by cloning the main repository and its dependencies.\n\n**Inputs:**\n- **`repo`** (required): The main repository in `org/repo` format to clone\n- **`deps-list`** (required): Space-separated list of dependencies in `org/repo` format to clone alongside the main repository\n- **`deps-versions-file`** (required): Path to a file containing the versions of the dependencies to clone\n- **`git-pat`** (optional): Git Personal Access Token for authentication\n\n**Example workflow:**\n~~~yaml\n  - uses: bopen/ci-cd/setup-deploy@main\n    with:\n      repo: org/main-repo\n      deps-list: \"org/dependency1 org/dependency2\"\n      deps-versions-file: org/main-repo/environment.release\n      git-pat: ${{ secrets.GIT_PAT }}\n~~~\n\n## update-dependency-file Action\n\nA GitHub Action that updates a dependency file with the specified version of specified dependency.\n\n### Usage\n\nThis action can be used in workflows to update a dependency file with the new version of a specified dependency.\n\n**Inputs:**\n- **`package-ref`** (required): The reference to the package in the dependency file\n- **`version`** (required): The version to update the dependency to\n- **`deps-versions-file`** (required): The file containing the dependency information\n\n**Example workflow:**\n\n~~~yaml\n  - name: Update dependency file\n    uses: bopen/ci-cd/update-dependency-file@main\n    with:\n      package-ref: PACKAGE_NAME_REF\n      version: v1.0\n      deps-versions-file: environment.release\n~~~\n\n## check-update-uv-lock Action\n\nA GitHub Action that checks if the `uv.lock` file is up to date and updates it if necessary.\n\n### Usage\n\nThis action can be used in workflows to ensure that the `uv.lock` file is correct and updated if needed.\n\n**Inputs:**\n- **`repo-path`** (required): The path to the repository containing the `uv.lock` file\n**Outputs:**\n- **`uv-lock`**: Boolean indicating whether the `uv.lock` file has been updated\n\n**Example workflow:**\n~~~yaml\n  - name: Check and update uv lock\n    id: check-update-uv-lock\n    uses: bopen/ci-cd/check-update-uv-lock@main\n    with:\n      repo-path: path/to/repository\n~~~","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbopen%2Fci-cd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbopen%2Fci-cd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbopen%2Fci-cd/lists"}