{"id":11547994,"name":"release-plz/action","ecosystem":"actions","description":"Update version and changelog based on semantic versioning and conventional commits","homepage":"https://github.com/marketplace/actions/release-plz","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/release-plz/action","keywords_array":["ci","hacktoberfest","release","release-plz","rust"],"namespace":"release-plz","versions_count":170,"first_release_published_at":"2022-04-03T17:23:50.000Z","latest_release_published_at":"2026-09-19T14:06:19.000Z","latest_release_number":"v0.5.139","last_synced_at":"2026-09-25T23:13:34.024Z","created_at":"2025-04-16T09:56:25.978Z","updated_at":"2026-09-25T23:13:34.024Z","registry_url":"https://github.com/release-plz/action","install_command":null,"documentation_url":null,"metadata":{"name":"release-plz","author":"Marco Ieni","description":"Update version and changelog based on semantic versioning and conventional commits","inputs":{"command":{"description":"The release-plz command to run. Accepted values: `release-pr`, `release`. If unspecified, this action runs both these commands.","required":false},"registry":{"description":"Registry where the packages are stored. The registry name needs to be present in the Cargo config. If unspecified, crates.io is used.","required":false},"config":{"description":"Config file location. If not present, the default 'release-plz.toml' is used.","required":false},"forge":{"description":"Git forge/backend. Valid values: 'github', 'gitea'. Defaults to 'github'.","required":false},"backend":{"description":"Supported for backward compatibility. Use 'forge' instead.","required":false},"manifest_path":{"description":"Path to the Cargo.toml of the project you want to update. If not provided, release-plz will use the Cargo.toml of the root directory. Both Cargo workspaces and single packages are supported.","required":false},"project_manifest":{"description":"Deprecated. Use `manifest_path` instead.","required":false},"version":{"description":"Release-plz version to use. (Default: `0.3.169`).","default":"0.3.169","required":false},"token":{"description":"Token used to publish to the cargo registry","required":false},"verbose":{"description":"Print module and source location in logs.","required":false},"dry_run":{"description":"Add the `--dry-run` flag to the `release` command. If the input `command` is left unspecified (and so both `release` and `release-pr` are ran), the `--dry-run` flag is only added to the `release` command (the flag isn't added to the `release-pr` command). Useful if you're only interested in whether or not a release (pr) would be created.","required":false}},"outputs":{"prs":{"description":"The release PRs opened by release-plz. (Not useful for now. Use `pr` instead)","value":"${{ steps.release-plz.outputs.prs }}"},"pr":{"description":"The release PR opened by release-plz.","value":"${{ steps.release-plz.outputs.pr }}"},"releases":{"description":"The JSON output of the `release` command.","value":"${{ steps.release-plz.outputs.releases }}"},"prs_created":{"description":"Whether release-plz created any release PR.","value":"${{ steps.release-plz.outputs.prs_created }}"},"releases_created":{"description":"Whether release-plz released any package.","value":"${{ steps.release-plz.outputs.releases_created }}"}},"branding":{"icon":"zap","color":"yellow"},"runs":{"using":"composite","steps":[{"name":"Install cargo-semver-checks","uses":"taiki-e/install-action@9983c65e42da123ff25d1f78505eb6de315aa172","with":{"tool":"cargo-semver-checks@0.50"}},{"name":"Install cargo-binstall","uses":"cargo-bins/cargo-binstall@b874e25ea559687bec77e281e9b271aa1367b624","env":{"BINSTALL_VERSION":"1.23.0"}},{"name":"Install release-plz","shell":"bash","run":"cargo-binstall \\\n    release-plz@${{ inputs.version }}\\\n    --force\\\n    --strategies=crate-meta-data,compile\\\n    --no-confirm\n"},{"name":"Configure git user from GitHub token","if":"${{ (inputs.forge || inputs.backend || 'github') == 'github' }}","uses":"release-plz/git-config@59144859caf016f8b817a2ac9b051578729173c4"},{"name":"Run release-plz","id":"release-plz","shell":"bash","run":"if [[ -n \"${{ inputs.config }}\" ]]\nthen\n    echo \"using config from '${{ inputs.config }}'\"\n    # Use arrays so that inputs can contain spaces\n    CONFIG_PATH=(\"--config\" \"${{ inputs.config }}\")\nelse\n    CONFIG_PATH=()\nfi\n\nif [[ -n \"${{ inputs.verbose }}\" ]]\nthen\n    VERBOSE=(\"-v\")\nelse\n    VERBOSE=()\nfi\n\nif [[ -n \"${{ inputs.dry_run }}\" ]]\nthen\n    DRY_RUN=(\"--dry-run\")\nelse\n    DRY_RUN=()\nfi\n\nif [[ -n \"${{ inputs.token }}\" ]]\nthen\n    echo \"using custom registry token'\"\n    TOKEN=(\"--token\" \"${{ inputs.token }}\")\nelse\n    TOKEN=()\nfi\n\nif [[ -n \"${{ inputs.forge }}\" ]]\nthen\n  echo \"Using forge '${{ inputs.forge }}'\"\n  FORGE=(\"--forge\" \"${{ inputs.forge }}\")\nelif [[ -n \"${{ inputs.backend }}\" ]]\nthen\n  echo \"'backend' input is supported for backward compatibility. Use 'forge' instead.\"\n  echo \"Using forge '${{ inputs.backend }}'\"\n  FORGE=(\"--forge\" \"${{ inputs.backend }}\")\nelse\n  echo \"Using forge 'github'\"\n  FORGE=(\"--forge\" \"github\")\nfi\n\nif [[ -n \"${{ inputs.registry }}\" ]]\nthen\n    echo \"using registry '${{ inputs.registry }}'\"\n    ALT_REGISTRY=(\"--registry\" \"${{ inputs.registry }}\")\nelse\n    ALT_REGISTRY=()\nfi\n\nif [[ -n \"${{ inputs.manifest_path }}\" ]]\nthen\n    echo \"using manifest path '${{ inputs.manifest_path }}'\"\n    MANIFEST_PATH=(\"--manifest-path\" \"${{ inputs.manifest_path }}\")\nelif [[ -n \"${{ inputs.project_manifest }}\" ]]\nthen\n    echo \"using manifest path '${{ inputs.project_manifest }}'\"\n    MANIFEST_PATH=(\"--project-manifest\" \"${{ inputs.project_manifest }}\")\nelse\n    MANIFEST_PATH=()\nfi\n\nif [[ -z \"${{ inputs.command }}\" || \"${{ inputs.command }}\" == \"release-pr\" ]]\nthen\n    echo \"-- Running release-plz release-pr --\"\n    release_pr_output=$(release-plz release-pr\\\n        --git-token \"${GITHUB_TOKEN}\"\\\n        --repo-url \"${GITHUB_SERVER_URL:-https://github.com}/${GITHUB_REPOSITORY}\"\\\n        \"${CONFIG_PATH[@]}\"\\\n        \"${ALT_REGISTRY[@]}\"\\\n        \"${MANIFEST_PATH[@]}\"\\\n        \"${FORGE[@]}\"\\\n        \"${VERBOSE[@]}\"\\\n        -o json)\n    echo \"release_pr_output: $release_pr_output\"\n    prs=$(echo \"$release_pr_output\" | jq -c .prs)\n    echo \"prs=$prs\" \u003e\u003e \"$GITHUB_OUTPUT\"\n    prs_length=$(echo \"$prs\" | jq 'length')\n    if [ \"$prs_length\" != \"0\" ]; then\n        prs_created=true\n        first_pr=$(echo \"$prs\" | jq -c .[0])\n    else\n        prs_created=false\n        first_pr=\"{}\"\n    fi\n    echo \"pr=$first_pr\" \u003e\u003e \"$GITHUB_OUTPUT\"\n    echo \"prs_created=$prs_created\" \u003e\u003e \"$GITHUB_OUTPUT\"\nfi\n\nif [[ -z \"${{ inputs.command }}\" || \"${{ inputs.command }}\" == \"release\" ]]\nthen\n    echo \"-- Running release-plz release --\"\n    release_output=$(release-plz release\\\n        --git-token \"${GITHUB_TOKEN}\"\\\n        \"${CONFIG_PATH[@]}\"\\\n        \"${ALT_REGISTRY[@]}\"\\\n        \"${MANIFEST_PATH[@]}\"\\\n        \"${FORGE[@]}\"\\\n        \"${TOKEN[@]}\"\\\n        \"${VERBOSE[@]}\"\\\n        \"${DRY_RUN[@]}\"\\\n        -o json)\n    echo \"release_output: $release_output\"\n    releases=$(echo $release_output | jq -c .releases)\n    echo \"releases=$releases\" \u003e\u003e \"$GITHUB_OUTPUT\"\n    releases_length=$(echo \"$releases\" | jq 'length')\n    if [ \"$releases_length\" != \"0\" ]; then\n        releases_created=true\n    else\n        releases_created=false\n    fi\n    echo \"releases_created=$releases_created\" \u003e\u003e \"$GITHUB_OUTPUT\"\nfi\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":39663345,"uuid":"476470908","full_name":"release-plz/action","owner":"release-plz","description":"GitHub action for https://github.com/release-plz/release-plz","archived":false,"fork":false,"pushed_at":"2026-09-24T19:37:01.000Z","size":581,"stargazers_count":58,"open_issues_count":7,"forks_count":28,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-09-25T18:29:04.458Z","etag":null,"topics":["ci","hacktoberfest","release","release-plz","rust"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/release-plz","language":"Rust","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/release-plz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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,"claude":null,"gemini":null,"cursor":null,"copilot":null,"dco":null,"cla":null,"disclosure":null},"funding":{"github":"release-plz","open_collective":"release-plz"}},"created_at":"2022-03-31T20:39:26.000Z","updated_at":"2026-09-24T19:37:05.000Z","dependencies_parsed_at":"2026-09-07T04:14:13.787Z","dependency_job_id":"98bbad26-d49e-428a-a20a-3e8a5dd38f71","html_url":"https://github.com/release-plz/action","commit_stats":{"total_commits":58,"total_committers":2,"mean_commits":29.0,"dds":"0.017241379310344862","last_synced_commit":"016706e9c926fd4eb45f33887e32e72d53c80751"},"previous_names":["release-plz/action"],"tags_count":170,"template":false,"template_full_name":null,"purl":"pkg:github/release-plz/action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/release-plz","download_url":"https://codeload.github.com/release-plz/action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":341189360,"owners_count":37692201,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-08-22T15:14:58.755Z","status":"online","status_checked_at":"2026-09-25T02:00:20.896Z","response_time":55,"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"},"owner_record":{"login":"release-plz","name":"release-plz","uuid":"188756284","kind":"organization","description":"Release-plz is a tool to automate Rust releases, started by @marcoieni ✌️","email":null,"website":"https://release-plz.dev","location":null,"twitter":"release_plz_dev","company":null,"icon_url":"https://avatars.githubusercontent.com/u/188756284?v=4","repositories_count":4,"last_synced_at":"2026-09-25T14:45:32.487Z","metadata":{"has_sponsors_listing":true,"funding":{"github":"release-plz","open_collective":"release-plz"}},"html_url":"https://github.com/release-plz","funding_links":["https://github.com/sponsors/release-plz","https://opencollective.com/release-plz"],"total_stars":1538,"followers":27,"following":0,"created_at":"2024-11-18T18:49:27.667Z","updated_at":"2026-09-25T14:45:32.504Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/release-plz","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/release-plz/repositories"},"tags":[{"name":"v0.5","sha":"b8d6b54b02889ff2ae2bb82e8b57c3a8fc1683a5","kind":"tag","published_at":"2026-09-19T14:06:29.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5","html_url":"https://github.com/release-plz/action/releases/tag/v0.5","dependencies_parsed_at":"2026-09-24T13:22:58.608Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5/manifests"},{"name":"v0.5.139","sha":"b8d6b54b02889ff2ae2bb82e8b57c3a8fc1683a5","kind":"tag","published_at":"2026-09-19T14:06:19.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.139","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.139","dependencies_parsed_at":"2026-09-24T13:22:58.623Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.139","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.139","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.139/manifests"},{"name":"v0.5.138","sha":"d6c56271d640b6c1b61d1e00593641c400a9f4bd","kind":"tag","published_at":"2026-09-17T16:52:18.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.138","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.138","dependencies_parsed_at":"2026-09-24T13:22:58.611Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.138","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.138","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.138/manifests"},{"name":"v0.5.137","sha":"8e61445f0b34e7c6d985255f2f1f05a36eb350dc","kind":"tag","published_at":"2026-09-13T20:55:14.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.137","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.137","dependencies_parsed_at":"2026-09-24T13:22:58.750Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.137","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.137","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.137/manifests"},{"name":"v0.5.136","sha":"a80d79efe0a195618acb02a4089d55fe74d2505f","kind":"tag","published_at":"2026-09-10T18:38:26.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.136","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.136","dependencies_parsed_at":"2026-09-24T13:22:58.750Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.136","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.136","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.136/manifests"},{"name":"v0.5.135","sha":"346832d73e3415c2ebd0432cba3a2bf5881e5f7d","kind":"tag","published_at":"2026-09-09T13:00:25.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.135","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.135","dependencies_parsed_at":"2026-09-24T13:22:58.744Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.135","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.135","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.135/manifests"},{"name":"v0.5.134","sha":"503fe65046e8810d4844f6b3aa12ab599a3549d7","kind":"tag","published_at":"2026-09-08T21:17:08.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.134","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.134","dependencies_parsed_at":"2026-09-24T13:22:58.878Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.134","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.134","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.134/manifests"},{"name":"v0.5.133","sha":"aec534bbd8631793b9b3b8f1ee6cd886c322e17f","kind":"tag","published_at":"2026-09-05T20:38:53.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.133","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.133","dependencies_parsed_at":"2026-09-24T13:22:59.194Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.133","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.133","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.133/manifests"},{"name":"v0.5.132","sha":"b5543c19b03be9bd48852d20ca89f478b7723260","kind":"tag","published_at":"2026-09-03T10:46:22.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.132","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.132","dependencies_parsed_at":"2026-09-24T13:22:59.201Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.132","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.132","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.132/manifests"},{"name":"v0.5.131","sha":"2eb1d8bcb770b4c48ccfaad919734b38b51958c9","kind":"tag","published_at":"2026-07-14T13:22:36.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.131","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.131","dependencies_parsed_at":"2026-08-08T13:38:54.264Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.131","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.131","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.131/manifests"},{"name":"v0.5.130","sha":"e8792575c7f2366cf6ff3ccc33ead9ace5b691c7","kind":"tag","published_at":"2026-06-09T15:51:16.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.130","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.130","dependencies_parsed_at":"2026-08-08T13:38:54.323Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.130","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.130","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.130/manifests"},{"name":"v0.5.129","sha":"064f4d1e36c843611ddf013be726beaa4ad804db","kind":"tag","published_at":"2026-05-10T13:59:07.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.129","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.129","dependencies_parsed_at":"2026-08-08T13:38:54.315Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.129","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.129","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.129/manifests"},{"name":"v0.5.128","sha":"1528104d2ca23787631a1c1f022abb64b34c1e11","kind":"tag","published_at":"2026-03-07T16:39:46.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.128","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.128","dependencies_parsed_at":"2026-08-08T13:38:54.315Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.128","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.128","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.128/manifests"},{"name":"v0.5.127","sha":"f708778669256143d984cce4b23592637532e040","kind":"tag","published_at":"2026-02-16T09:40:31.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.127","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.127","dependencies_parsed_at":"2026-08-08T13:38:54.058Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.127","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.127","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.127/manifests"},{"name":"v0.5.126","sha":"52440b50d383aa252927de395c8b2c1e0a9cf8e9","kind":"tag","published_at":"2026-02-06T08:30:41.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.126","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.126","dependencies_parsed_at":"2026-08-08T13:38:54.152Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.126","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.126","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.126/manifests"},{"name":"v0.5.125","sha":"20b23932963f7971bdff386c3542f07fbec45f42","kind":"tag","published_at":"2026-02-03T22:15:29.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.125","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.125","dependencies_parsed_at":"2026-08-08T13:38:54.485Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.125","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.125","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.125/manifests"},{"name":"v0.5.124","sha":"e592230ad39e3ec735402572601fc621aa24355c","kind":"tag","published_at":"2026-01-24T11:46:04.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.124","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.124","dependencies_parsed_at":"2026-08-08T13:38:54.328Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.124","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.124","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.124/manifests"},{"name":"v0.5.123","sha":"a8c9cdc15f62c6c659d249dad388c8594a11f87e","kind":"tag","published_at":"2026-01-24T09:26:31.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.123","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.123","dependencies_parsed_at":"2026-08-08T13:38:54.523Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.123","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.123","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.123/manifests"},{"name":"v0.5.122","sha":"adcc7904c46f9595dab7534d05c3fee773eac4bc","kind":"tag","published_at":"2026-01-23T23:47:59.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.122","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.122","dependencies_parsed_at":"2026-08-08T13:38:54.511Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.122","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.122","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.122/manifests"},{"name":"v0.5.121","sha":"5ab144c9d67d4346240190d0f95ed08668677928","kind":"tag","published_at":"2026-01-17T23:37:54.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.121","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.121","dependencies_parsed_at":"2026-08-08T13:38:54.763Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.121","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.121","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.121/manifests"},{"name":"v0.5.120","sha":"487eb7b5c085a664d5c5ca05f4159bd9b591182a","kind":"tag","published_at":"2025-12-05T21:09:51.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.120","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.120","dependencies_parsed_at":"2026-08-08T13:38:54.632Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.120","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.120","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.120/manifests"},{"name":"v0.5.119","sha":"1efcf74dfcd6e500990dad806e286899ae384064","kind":"tag","published_at":"2025-11-24T21:12:47.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.119","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.119","dependencies_parsed_at":"2026-08-08T13:38:54.634Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.119","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.119","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.119/manifests"},{"name":"v0.5.118","sha":"d529f731ae3e89610ada96eda34e5c6ba3b12214","kind":"tag","published_at":"2025-10-11T02:19:35.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.118","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.118","dependencies_parsed_at":"2025-10-16T05:40:36.694Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.118","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.118","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.118/manifests"},{"name":"v0.5.117","sha":"acb9246af4d59a270d1d4058a8b9af8c3f3a2559","kind":"tag","published_at":"2025-09-13T16:38:12.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.117","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.117","dependencies_parsed_at":"2026-08-08T13:38:54.554Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.117","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.117","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.117/manifests"},{"name":"v0.5.116","sha":"27195cf771d08bcac8726c0a41316393c5b2ec05","kind":"tag","published_at":"2025-09-12T02:28:22.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.116","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.116","dependencies_parsed_at":"2026-08-08T13:38:54.763Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.116","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.116","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.116/manifests"},{"name":"v0.5.115","sha":"574c1d0ed8491b294f596b7148bafd08cca6a600","kind":"tag","published_at":"2025-09-10T16:02:50.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.115","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.115","dependencies_parsed_at":"2026-08-08T13:38:54.774Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.115","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.115","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.115/manifests"},{"name":"v0.5.114","sha":"d15ad33e74a427cbd6f5be06f1bec07c1a73a227","kind":"tag","published_at":"2025-09-05T21:42:59.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.114","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.114","dependencies_parsed_at":"2026-08-08T13:38:55.012Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.114","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.114","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.114/manifests"},{"name":"v0.5.113","sha":"f4facd4a76fecd4b1b94f718c4f5e80510150720","kind":"tag","published_at":"2025-09-01T13:28:03.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.113","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.113","dependencies_parsed_at":"2026-08-08T13:38:54.608Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.113","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.113","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.113/manifests"},{"name":"v0.5.112","sha":"f9715bc3b46e211f764f4440a221ddb89ae8abb3","kind":"tag","published_at":"2025-08-15T12:00:25.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.112","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.112","dependencies_parsed_at":"2025-08-28T08:14:17.398Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.112","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.112","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.112/manifests"},{"name":"v0.5.111","sha":"a4ffad5637d546ada0aa82d84fa91eafb8f5fb6b","kind":"tag","published_at":"2025-08-13T22:09:44.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.111","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.111","dependencies_parsed_at":"2025-08-28T08:14:17.363Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.111","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.111","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.111/manifests"},{"name":"v0.5.110","sha":"ccf6dd998441f26020f4315f1ebe95d9e2e42600","kind":"tag","published_at":"2025-07-24T09:28:49.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.110","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.110","dependencies_parsed_at":"2025-07-29T05:54:59.590Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.110","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.110","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.110/manifests"},{"name":"v0.5.109","sha":"068d76d2aa32d3c9cd0b1ccdd9ac921e28ba2be9","kind":"tag","published_at":"2025-07-19T17:29:29.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.109","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.109","dependencies_parsed_at":"2025-07-26T05:39:51.736Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.109","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.109","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.109/manifests"},{"name":"v0.5.108","sha":"8724d33cd97b8295051102e2e19ca592962238f5","kind":"tag","published_at":"2025-06-19T07:33:37.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.108","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.108","dependencies_parsed_at":"2025-06-22T04:32:03.270Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.108","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.108","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.108/manifests"},{"name":"v0.5.107","sha":"dde7b63054529c440305a924e5849c68318bcc9a","kind":"tag","published_at":"2025-05-18T19:33:10.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.107","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.107","dependencies_parsed_at":"2025-05-25T07:17:40.043Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.107","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.107","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.107/manifests"},{"name":"v0.5.106","sha":"57d6b19001af9a5f21e461fc67adbb5a5f4d5ebe","kind":"tag","published_at":"2025-05-08T12:44:27.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.106","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.106","dependencies_parsed_at":"2025-05-10T04:25:22.955Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.106","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.106","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.106/manifests"},{"name":"v0.5.105","sha":"bbd1afc9813d25602e002b29e96e0aacebab1160","kind":"tag","published_at":"2025-04-19T09:40:14.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.105","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.105","dependencies_parsed_at":"2026-08-08T13:38:54.699Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.105","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.105","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.105/manifests"},{"name":"v0.5.104","sha":"54c245148fec8cd76a8ecaa784681b8cb0b8bf8c","kind":"tag","published_at":"2025-04-13T12:34:19.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.104","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.104","dependencies_parsed_at":"2025-04-19T05:32:38.834Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.104","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.104","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.104/manifests"},{"name":"v0.5.103","sha":"245a2a85f1ebdb6a7dd33c813443793e33f08544","kind":"tag","published_at":"2025-04-10T20:41:03.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.103","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.103","dependencies_parsed_at":"2025-04-19T05:32:37.364Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.103","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.103","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.103/manifests"},{"name":"v0.5.102","sha":"7419a2cb1535b9c0e852b4dec626967baf65c022","kind":"tag","published_at":"2025-04-02T19:22:00.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.102","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.102","dependencies_parsed_at":"2025-04-19T05:32:38.759Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.102","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.102","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.102/manifests"},{"name":"v0.5.101","sha":"8e91c71a60327f76b30233d17e3cabb316522e8f","kind":"tag","published_at":"2025-03-26T22:26:50.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.101","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.101","dependencies_parsed_at":"2025-04-19T05:32:38.835Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.101","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.101","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.101/manifests"},{"name":"v0.5.100","sha":"4cd77ee4d22f0cdb1a461e6eb3591cddc5e1f665","kind":"tag","published_at":"2025-03-15T17:44:46.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.100","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.100","dependencies_parsed_at":"2025-04-19T05:32:37.365Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.100","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.100","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.100/manifests"},{"name":"v0.5.99","sha":"476794ede164c5137bfc3a1dc6ed3675275690f9","kind":"tag","published_at":"2025-03-04T21:33:10.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.99","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.99","dependencies_parsed_at":"2025-04-19T05:32:38.709Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.99","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.99","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.99/manifests"},{"name":"v0.5.98","sha":"704937995982d7590add777dbdb2bf7aa94a6cf6","kind":"tag","published_at":"2025-03-02T11:20:37.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.98","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.98","dependencies_parsed_at":"2025-04-19T05:32:38.712Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.98","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.98","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.98/manifests"},{"name":"v0.5.97","sha":"d648ff7d7a6c71fa2337c8cc2c7b3e4fb578cdea","kind":"tag","published_at":"2025-02-25T16:18:48.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.97","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.97","dependencies_parsed_at":"2025-04-19T05:32:38.716Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.97","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.97","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.97/manifests"},{"name":"v0.5.96","sha":"49d211662734649022d06ac385e317aa025c64e7","kind":"tag","published_at":"2025-02-22T21:49:10.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.96","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.96","dependencies_parsed_at":"2025-04-19T05:32:38.707Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.96","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.96","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.96/manifests"},{"name":"v0.5.95","sha":"f0ac8a9cb6b916ae0d561102a41e698fb841406e","kind":"tag","published_at":"2025-02-22T18:35:47.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.95","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.95","dependencies_parsed_at":"2025-04-19T05:32:38.706Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.95","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.95","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.95/manifests"},{"name":"v0.5.94","sha":"36d2dcf6a250ff9c4dfd2984e988d79ea67a4c6a","kind":"tag","published_at":"2025-02-09T19:08:41.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.94","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.94","dependencies_parsed_at":"2025-04-19T05:32:37.366Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.94","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.94","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.94/manifests"},{"name":"v0.5.93","sha":"e6b7e6238045c1424a20c6b85560a43f9a1ed35f","kind":"tag","published_at":"2025-02-09T10:19:45.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.93","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.93","dependencies_parsed_at":"2025-04-19T05:32:37.366Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.93","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.93","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.93/manifests"},{"name":"v0.5.92","sha":"bb473c0a63c57e1a0fdd2cd192f55d172a188500","kind":"tag","published_at":"2025-02-08T22:36:38.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.92","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.92","dependencies_parsed_at":"2025-04-19T05:32:38.705Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.92","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.92","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.92/manifests"},{"name":"v0.5.91","sha":"ab7cf99809984a264c3a25bdfc030d54b31eefbb","kind":"tag","published_at":"2025-02-08T20:02:07.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.91","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.91","dependencies_parsed_at":"2025-04-19T05:32:38.739Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.91","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.91","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.91/manifests"},{"name":"v0.5.90","sha":"269387141c39d8ba9eed025ab109e462ada263f2","kind":"tag","published_at":"2025-02-01T17:29:45.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.90","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.90","dependencies_parsed_at":"2025-04-19T05:32:38.707Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.90","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.90","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.90/manifests"},{"name":"v0.5.89","sha":"608dd7882102f11581db9edb9ce790d2bab5c995","kind":"tag","published_at":"2025-01-25T18:25:29.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.89","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.89","dependencies_parsed_at":"2025-04-19T05:32:38.706Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.89","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.89","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.89/manifests"},{"name":"v0.5.88","sha":"ca8762285a5dc0c220cb4a7896c9986ff6c97ecf","kind":"tag","published_at":"2025-01-14T21:35:36.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.88","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.88","dependencies_parsed_at":"2025-04-19T05:32:38.707Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.88","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.88","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.88/manifests"},{"name":"v0.5.87","sha":"395042a06223c60c3e953d5fa124e97dfef96672","kind":"tag","published_at":"2024-12-19T21:41:15.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.87","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.87","dependencies_parsed_at":"2025-04-19T05:32:38.707Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.87","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.87","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.87/manifests"},{"name":"v0.5.86","sha":"db75300cf27adcd986d6f0cf4a72a4ffcc11dae5","kind":"tag","published_at":"2024-12-07T18:58:07.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.86","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.86","dependencies_parsed_at":"2025-04-19T05:32:38.709Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.86","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.86","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.86/manifests"},{"name":"v0.5.85","sha":"2d634174257b7f46339e7533865a910743a0c5c9","kind":"tag","published_at":"2024-11-22T08:40:33.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.85","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.85","dependencies_parsed_at":"2025-04-19T05:32:38.708Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.85","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.85","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.85/manifests"},{"name":"v0.5.84","sha":"f0fdffff1ff475195a1638e487cf93719e065a8e","kind":"tag","published_at":"2024-11-13T21:33:38.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.84","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.84","dependencies_parsed_at":"2024-11-20T04:17:03.778Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.84","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.84","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.84/manifests"},{"name":"v0.5.83","sha":"301fd6d8c641b97f25b5ade37651a478a5faa7da","kind":"tag","published_at":"2024-11-08T11:38:36.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.83","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.83","dependencies_parsed_at":"2024-11-11T09:11:04.780Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.83","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.83","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.83/manifests"},{"name":"v0.5.82","sha":"fff938ea2923fdfa35797fff63537b00f30fe6f9","kind":"tag","published_at":"2024-10-28T08:06:46.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.82","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.82","dependencies_parsed_at":"2024-10-30T06:22:21.215Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.82","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.82","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.82/manifests"},{"name":"v0.5.81","sha":"0a28fd4d52f6b5e06e0cf8e75a22e96e1966fc2f","kind":"tag","published_at":"2024-10-25T20:52:07.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.81","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.81","dependencies_parsed_at":"2024-10-27T05:06:46.491Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.81","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.81","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.81/manifests"},{"name":"v0.5.80","sha":"394e0e463367550953346be95d427f80f4f7ae30","kind":"tag","published_at":"2024-10-18T20:52:27.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.80","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.80","dependencies_parsed_at":"2024-10-20T05:46:10.911Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.80","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.80","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.80/manifests"},{"name":"v0.5.79","sha":"b86d133974cdeac8c9e79a76a6b5b70fc77d0826","kind":"tag","published_at":"2024-10-16T13:43:02.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.79","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.79","dependencies_parsed_at":"2024-10-18T04:41:01.733Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.79","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.79","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.79/manifests"},{"name":"v0.5.78","sha":"b9c99ed3b0abf38bc0613bc1d668f54c47de9ff1","kind":"tag","published_at":"2024-10-16T10:08:16.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.78","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.78","dependencies_parsed_at":"2024-10-18T04:41:02.774Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.78","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.78","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.78/manifests"},{"name":"v0.5.77","sha":"1284a1a2507958cb5a58ea41792c254d3a5a47e3","kind":"tag","published_at":"2024-10-16T07:05:31.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.77","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.77","dependencies_parsed_at":"2024-10-18T04:41:02.898Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.77","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.77","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.77/manifests"},{"name":"v0.5.76","sha":"ede2f28fa44b20604b878348dda4a27f21a434da","kind":"tag","published_at":"2024-10-13T22:04:44.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.76","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.76","dependencies_parsed_at":"2024-10-17T07:22:36.447Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.76","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.76","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.76/manifests"},{"name":"v0.5.75","sha":"aba3cd46a59e3c2a9b9c24b27222114855002521","kind":"tag","published_at":"2024-10-08T20:41:32.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.75","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.75","dependencies_parsed_at":"2024-10-11T04:19:57.365Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.75","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.75","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.75/manifests"},{"name":"v0.5.74","sha":"693f6d4e6b31911b9a153800b47ed9368bbf1bd6","kind":"tag","published_at":"2024-10-05T17:18:40.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.74","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.74","dependencies_parsed_at":"2024-10-10T04:05:36.523Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.74","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.74","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.74/manifests"},{"name":"v0.5.73","sha":"5c48341da1cf7cd826bb6fa008d1ae7f5717aea1","kind":"tag","published_at":"2024-10-03T10:43:24.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.73","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.73","dependencies_parsed_at":"2024-10-05T06:37:14.704Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.73","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.73","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.73/manifests"},{"name":"v0.5.72","sha":"dbf3db74cd26317d882c6a39d5355161017f08f5","kind":"tag","published_at":"2024-10-02T07:48:00.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.72","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.72","dependencies_parsed_at":"2024-10-05T06:37:14.705Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.72","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.72","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.72/manifests"},{"name":"v0.5.71","sha":"91356927c5ac06a27d9342861ff6e234210d56b4","kind":"tag","published_at":"2024-09-30T19:37:26.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.71","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.71","dependencies_parsed_at":"2024-10-05T06:37:14.702Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.71","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.71","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.71/manifests"},{"name":"v0.5.70","sha":"8b0f89aecdbe322253c7ad39adfd5b9d94c73496","kind":"tag","published_at":"2024-09-28T09:03:16.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.70","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.70","dependencies_parsed_at":"2024-09-30T05:59:19.326Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.70","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.70","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.70/manifests"},{"name":"v0.5.69","sha":"f7caa3f8c6302301514192fd4a83c4c56ee793a6","kind":"tag","published_at":"2024-09-17T21:37:24.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.69","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.69","dependencies_parsed_at":"2024-09-18T04:04:34.901Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.69","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.69","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.69/manifests"},{"name":"v0.5.68","sha":"444ecf57d2dbf77379b0df11cf1e850ffafaf5dc","kind":"tag","published_at":"2024-09-17T09:51:37.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.68","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.68","dependencies_parsed_at":"2024-09-19T04:44:08.480Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.68","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.68","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.68/manifests"},{"name":"v0.5.67","sha":"61d4f422cf9bdf306eeaed13785ba8207e50f80a","kind":"tag","published_at":"2024-09-16T20:33:19.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.67","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.67","dependencies_parsed_at":"2024-09-17T05:14:27.063Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.67","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.67","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.67/manifests"},{"name":"v0.5.66","sha":"58dfb4c7530c2a913e7c247fc9f33c8e2499c93b","kind":"tag","published_at":"2024-09-16T18:05:35.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.66","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.66","dependencies_parsed_at":"2024-09-17T05:14:27.344Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.66","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.66","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.66/manifests"},{"name":"v0.5.65","sha":"e28810957ef1fedfa89b5e9692e750ce45f62a67","kind":"tag","published_at":"2024-08-18T21:06:33.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.65","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.65","dependencies_parsed_at":"2024-08-22T05:12:50.540Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.65","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.65","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.65/manifests"},{"name":"v0.5.64","sha":"92ae919a6b3e27c0472659e3a7414ff4a00e833f","kind":"tag","published_at":"2024-08-05T05:20:35.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.64","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.64","dependencies_parsed_at":"2024-08-07T04:20:03.866Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.64","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.64","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.64/manifests"},{"name":"v0.5.63","sha":"0f9dc2d45c1b43820f5894fda2345909f5443187","kind":"tag","published_at":"2024-08-04T16:47:03.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.63","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.63","dependencies_parsed_at":"2024-08-06T04:05:28.143Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.63","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.63","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.63/manifests"},{"name":"v0.5.62","sha":"86afd21a7b114234aab55ba0005eed52f77d89e4","kind":"tag","published_at":"2024-06-18T21:13:21.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.62","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.62","dependencies_parsed_at":"2024-06-20T04:09:40.472Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.62","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.62","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.62/manifests"},{"name":"v0.5.61","sha":"7566221bba53f707d05e4149111ada2c3313ae28","kind":"tag","published_at":"2024-05-31T17:21:36.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.61","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.61","dependencies_parsed_at":"2024-06-02T04:13:40.888Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.61","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.61","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.61/manifests"},{"name":"v0.5.60","sha":"98b2b45b090aadf18cb662caaf3de6222d98822a","kind":"tag","published_at":"2024-05-27T20:04:41.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.60","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.60","dependencies_parsed_at":"2024-05-29T04:11:52.200Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.60","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.60","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.60/manifests"},{"name":"v0.5.59","sha":"d0927b914b85b5f4f097fd86a268e65de7bf16b6","kind":"tag","published_at":"2024-05-22T18:44:18.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.59","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.59","dependencies_parsed_at":null,"dependency_job_id":"d5f51d3e-2818-4be9-ab18-7d717714dcd3","purl":"pkg:github/release-plz/action@v0.5.59","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.59","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.59/manifests"},{"name":"v0.5.58","sha":"7fe60ae5d741fc80fa624aef172aee9de2b98747","kind":"tag","published_at":"2024-05-14T21:39:18.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.58","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.58","dependencies_parsed_at":"2024-05-17T05:05:41.100Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.58","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.58","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.58/manifests"},{"name":"v0.5.57","sha":"a2904442184b59b09f10f6c7197cfa8e48bd2fc4","kind":"tag","published_at":"2024-05-12T17:55:32.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.57","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.57","dependencies_parsed_at":"2024-05-14T04:14:08.282Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.57","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.57","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.57/manifests"},{"name":"v0.5.56","sha":"b7f4ba23784dbc21b3fc194d3aabebcd602b91a1","kind":"tag","published_at":"2024-05-10T06:44:11.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.56","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.56","dependencies_parsed_at":"2024-05-12T04:44:39.658Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.56","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.56","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.56/manifests"},{"name":"v0.5.55","sha":"76e66a600f00c1f47dd1a2f3169f97a5213dc90b","kind":"tag","published_at":"2024-05-05T21:53:12.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.55","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.55","dependencies_parsed_at":"2024-05-07T04:14:18.082Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.55","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.55","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.55/manifests"},{"name":"v0.5.54","sha":"0e174e2eb0019edccb6645d27a239bc0e3de7d63","kind":"tag","published_at":"2024-04-28T14:20:30.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.54","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.54","dependencies_parsed_at":"2024-04-30T04:19:25.819Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.54","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.54","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.54/manifests"},{"name":"v0.5.53","sha":"b00a07eb185828c67f1c1cb284c070d7942b537e","kind":"tag","published_at":"2024-04-25T17:09:17.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.53","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.53","dependencies_parsed_at":"2024-04-27T04:04:42.932Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.53","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.53","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.53/manifests"},{"name":"v0.5.52","sha":"a6a23fd7bb7db7cf2912d029703ed80932cf94fa","kind":"tag","published_at":"2024-04-21T17:39:14.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.52","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.52","dependencies_parsed_at":"2024-04-23T04:28:06.246Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.52","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.52","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.52/manifests"},{"name":"v0.5.51","sha":"be0d79d4eac427751f8d3756c803ab729a89752d","kind":"tag","published_at":"2024-04-14T17:50:34.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.51","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.51","dependencies_parsed_at":"2024-04-16T11:37:36.414Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.51","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.51","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.51/manifests"},{"name":"v0.5.50","sha":"63ab0c2746bedc448370bad4b0b3d536458398b0","kind":"tag","published_at":"2024-04-08T21:18:20.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.50","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.50","dependencies_parsed_at":"2024-04-10T04:58:46.512Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.50","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.50","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.50/manifests"},{"name":"v0.5.49","sha":"f8ca868cbf814c6fe7a26e51bc2f9b80ad60ea2f","kind":"tag","published_at":"2024-04-02T23:01:07.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.49","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.49","dependencies_parsed_at":"2024-04-04T04:13:10.765Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.49","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.49","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.49/manifests"},{"name":"v0.5.48","sha":"7427ec81f410c6507414cb6df03dc14bdad887f1","kind":"tag","published_at":"2024-03-24T13:14:31.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.48","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.48","dependencies_parsed_at":"2024-03-26T04:56:17.399Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.48","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.48","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.48/manifests"},{"name":"v0.5.47","sha":"6ada1ce4bed67b61cc178530ef0a55987eea7ff3","kind":"tag","published_at":"2024-03-15T18:39:12.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.47","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.47","dependencies_parsed_at":"2024-03-17T06:23:57.890Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.47","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.47","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.47/manifests"},{"name":"v0.5.46","sha":"f305593c6550f1f2c625387f359e1ee5a58dbb10","kind":"tag","published_at":"2024-03-10T23:17:42.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.46","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.46","dependencies_parsed_at":"2024-03-12T04:36:13.705Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.46","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.46","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.46/manifests"},{"name":"v0.5.45","sha":"52690cf6cc8b09cfa0e43ee0ccb25885ecfef991","kind":"tag","published_at":"2024-03-09T08:12:38.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.45","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.45","dependencies_parsed_at":"2024-03-11T04:05:26.451Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.45","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.45","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.45/manifests"},{"name":"v0.5.44","sha":"74b49a994f7f4210f06c03ada760f7cc0fed8729","kind":"tag","published_at":"2024-03-07T17:14:32.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.44","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.44","dependencies_parsed_at":"2024-03-09T04:12:24.391Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.44","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.44","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.44/manifests"},{"name":"v0.5.43","sha":"b1af9fe80a228307d115a4af7a4478dc6f6b0df0","kind":"tag","published_at":"2024-02-27T23:08:15.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.43","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.43","dependencies_parsed_at":"2024-02-29T04:18:56.910Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.43","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.43","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.43/manifests"},{"name":"v0.5.42","sha":"789acd9c068bde16dc8c8071957b5bab880ba8a8","kind":"tag","published_at":"2024-02-25T23:03:20.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.42","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.42","dependencies_parsed_at":"2024-02-27T04:18:22.192Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.42","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.42","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.42/manifests"},{"name":"v0.5.41","sha":"762830011b19e9bb35798ded2485aebe9c3d2fe1","kind":"tag","published_at":"2024-02-12T11:46:49.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.41","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.41","dependencies_parsed_at":"2024-02-14T04:26:06.187Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.41","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.41","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.41/manifests"},{"name":"v0.5.40","sha":"899e6230926aa15637bf4d18212dedb542b47308","kind":"tag","published_at":"2024-02-09T21:50:45.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.40","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.40","dependencies_parsed_at":"2024-02-12T04:54:05.022Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.40","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.40","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.40/manifests"},{"name":"v0.5.39","sha":"a00c4faa85b773735062835b45467b80536e7bc3","kind":"tag","published_at":"2024-02-06T11:06:20.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.39","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.39","dependencies_parsed_at":"2024-02-08T04:19:05.772Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.39","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.39","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.39/manifests"},{"name":"v0.5.38","sha":"baa1bfdc9eab962ec99d0f77928a31011683f466","kind":"tag","published_at":"2024-01-26T18:39:55.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.38","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.38","dependencies_parsed_at":"2024-01-28T04:35:18.141Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.38","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.38","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.38/manifests"},{"name":"v0.5.37","sha":"0d5c2af995026f2349d1d86f8687a71cb4516d66","kind":"tag","published_at":"2024-01-24T18:56:57.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.37","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.37","dependencies_parsed_at":"2024-01-28T04:35:18.140Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.37","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.37","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.37/manifests"},{"name":"v0.5.36","sha":"c6ddcdd2d25b19d5a592a84e7c06f5daf831510a","kind":"tag","published_at":"2024-01-20T18:21:45.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.36","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.36","dependencies_parsed_at":"2024-01-23T05:01:13.241Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.36","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.36","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.36/manifests"},{"name":"v0.5.35","sha":"2ed796c95e54e88fd4066b644c214576d67534db","kind":"tag","published_at":"2024-01-17T18:30:26.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.35","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.35","dependencies_parsed_at":"2024-01-19T04:44:35.440Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.35","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.35","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.35/manifests"},{"name":"v0.5.34","sha":"ee94617706bd1bf1c6760be56f71c26b9185cac8","kind":"tag","published_at":"2023-12-30T21:02:08.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.34","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.34","dependencies_parsed_at":"2024-01-01T04:41:17.337Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.34","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.34","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.34/manifests"},{"name":"v0.5.33","sha":"46506767da1fe282ca90ba486773e16fb4bc69bf","kind":"tag","published_at":"2023-12-20T17:21:15.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.33","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.33","dependencies_parsed_at":"2023-12-22T05:03:44.370Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.33","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.33","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.33/manifests"},{"name":"v0.5.32","sha":"e52535f1d0dd76a2181f1204be6d13f8e1ab97f2","kind":"tag","published_at":"2023-12-17T15:40:39.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.32","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.32","dependencies_parsed_at":"2023-12-21T04:16:15.404Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.32","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.32","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.32/manifests"},{"name":"v0.5.31","sha":"46f3caac290e70e8cf21f82bb92e05dc18ad4360","kind":"tag","published_at":"2023-12-13T20:29:33.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.31","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.31","dependencies_parsed_at":"2023-12-16T07:07:14.508Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.31","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.31","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.31/manifests"},{"name":"v0.5.30","sha":"94340262246aef908ff36a6fd05a0d08d9ae5c87","kind":"tag","published_at":"2023-12-11T10:20:39.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.30","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.30","dependencies_parsed_at":"2023-12-13T07:53:41.132Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.30","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.30","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.30/manifests"},{"name":"v0.5.29","sha":"808c095f2120b9f52af95a8ce071e68a09424432","kind":"tag","published_at":"2023-12-04T22:06:29.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.29","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.29","dependencies_parsed_at":"2023-12-06T06:02:13.858Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.29","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.29","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.29/manifests"},{"name":"v0.5.28","sha":"cb969f1683299c08e676187ef5b8df1160233734","kind":"tag","published_at":"2023-12-02T19:51:18.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.28","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.28","dependencies_parsed_at":"2023-12-04T05:30:42.029Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.28","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.28","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.28/manifests"},{"name":"v0.5.27","sha":"f31395d4bb1fd72474d4a1c80ab5cb54e82a5eb9","kind":"tag","published_at":"2023-11-12T09:24:13.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.27","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.27","dependencies_parsed_at":"2023-11-14T07:38:58.890Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.27","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.27","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.27/manifests"},{"name":"v0.5.26","sha":"74ca2e07fd458dbdc98ee62c3c3c9a297f3f159a","kind":"tag","published_at":"2023-10-30T07:42:32.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.26","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.26","dependencies_parsed_at":"2023-11-01T05:33:18.014Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.26","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.26","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.26/manifests"},{"name":"v0.5.25","sha":"045c7a41711fb0696141464d001f9c3fe85f912e","kind":"tag","published_at":"2023-10-15T10:41:58.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.25","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.25","dependencies_parsed_at":null,"dependency_job_id":"8c0ec397-3708-4ebb-9169-ae31b7fca75a","purl":"pkg:github/release-plz/action@v0.5.25","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.25/manifests"},{"name":"v0.5.24","sha":"31e374c56df9fc4eca2c9829661be075a5ce62c2","kind":"tag","published_at":"2023-10-01T06:33:47.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.24","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.24","dependencies_parsed_at":"2023-10-02T05:56:10.532Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.24","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.24/manifests"},{"name":"v0.5.23","sha":"ce393af6a01a1c994bf8a0f469c015dc5593dfbe","kind":"tag","published_at":"2023-09-24T15:44:34.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.23","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.23","dependencies_parsed_at":"2023-09-28T05:59:31.277Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.23/manifests"},{"name":"v0.5.22","sha":"bc222aee0f54f88f2304290ef0966b5a45b6c77f","kind":"tag","published_at":"2023-09-18T05:35:35.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.22","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.22","dependencies_parsed_at":"2023-09-22T05:49:03.386Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.22/manifests"},{"name":"v0.5.21","sha":"bc222aee0f54f88f2304290ef0966b5a45b6c77f","kind":"tag","published_at":"2023-09-17T07:19:46.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.21","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.21","dependencies_parsed_at":"2023-09-18T04:55:16.621Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.21","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.21/manifests"},{"name":"v0.5.20","sha":"63d791e17e2f2369d173fb6b81b401029e16e04f","kind":"tag","published_at":"2023-09-11T21:29:09.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.20","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.20","dependencies_parsed_at":"2023-09-16T09:51:29.898Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.20","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.20/manifests"},{"name":"v0.5.19","sha":"3c5c13a2887c519886351ec7ad37da0cb076e524","kind":"tag","published_at":"2023-09-09T10:43:21.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.19","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.19","dependencies_parsed_at":"2023-09-14T06:56:17.481Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.19/manifests"},{"name":"v0.5.18","sha":"bb6e2a082ed5021700a16767feaaecf07d20d1fe","kind":"tag","published_at":"2023-08-27T10:40:16.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.18","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.18","dependencies_parsed_at":"2023-08-29T04:54:35.881Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.18/manifests"},{"name":"v0.5.17","sha":"c9f2c916651b6944462c11415f95f6ca4f8acd6b","kind":"tag","published_at":"2023-08-16T12:13:19.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.17","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.17","dependencies_parsed_at":"2023-08-19T06:59:58.587Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.17/manifests"},{"name":"v0.5.16","sha":"4283b2e2a1b83620ae91c1ce9b5ca009b9c2b141","kind":"tag","published_at":"2023-08-02T11:15:46.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.16","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.16","dependencies_parsed_at":"2023-08-09T05:52:02.275Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.16/manifests"},{"name":"v0.5.15","sha":"7e07db1f836ff50d96ba30ebad8f70dd00c11f7d","kind":"tag","published_at":"2023-07-25T21:04:50.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.15","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.15","dependencies_parsed_at":"2023-07-29T04:14:23.554Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.15/manifests"},{"name":"v0.5.14","sha":"c7883787cde977b205e99ed98f9011401cae0462","kind":"tag","published_at":"2023-06-26T21:12:02.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.14","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.14","dependencies_parsed_at":"2023-07-02T04:29:00.857Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.14/manifests"},{"name":"v0.5.13","sha":"b51135b13a765791c34c792fb510add8b9fb439f","kind":"tag","published_at":"2023-06-10T10:06:36.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.13","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.13","dependencies_parsed_at":"2023-06-12T00:06:11.522Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.13/manifests"},{"name":"v0.5.12","sha":"4aa25ce8f19a802c396d311f817330b2dd1c93e9","kind":"tag","published_at":"2023-06-10T05:30:21.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.12","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.12","dependencies_parsed_at":"2023-06-12T00:06:11.438Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.12/manifests"},{"name":"v0.5.11","sha":"841c37af646f70570ee5b8f8c693f8b27c3b5e5b","kind":"tag","published_at":"2023-06-09T20:49:45.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.11","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.11","dependencies_parsed_at":"2023-06-11T00:05:00.880Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.11/manifests"},{"name":"v0.5.10","sha":"b0fe5c292da619f91a7f11dc53f6e35cf73258ab","kind":"tag","published_at":"2023-05-31T20:35:59.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.10","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.10","dependencies_parsed_at":"2023-06-02T11:55:16.144Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.10/manifests"},{"name":"v0.5.9","sha":"20eadc248a0879ef85d05352adc0d638b9d11338","kind":"tag","published_at":"2023-05-26T07:07:14.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.9","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.9","dependencies_parsed_at":"2023-06-02T00:22:55.256Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.9/manifests"},{"name":"v0.5.8","sha":"95241abff79f4ad251f5f4d02525ecad4f09a999","kind":"tag","published_at":"2023-05-21T20:41:04.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.8","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.8","dependencies_parsed_at":"2023-06-02T00:22:54.352Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.8/manifests"},{"name":"v0.5.7","sha":"8adf74854fa3004837620d963b934ea7914e6d4e","kind":"tag","published_at":"2023-05-10T19:56:28.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.7","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.7","dependencies_parsed_at":"2023-06-02T00:22:56.366Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.7/manifests"},{"name":"v0.5.6","sha":"b8822e632e294166998117380656b1bcfe73e186","kind":"tag","published_at":"2023-05-07T15:41:09.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.6","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.6","dependencies_parsed_at":"2023-06-02T00:22:54.585Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.6/manifests"},{"name":"v0.5.5","sha":"e7e9131fc1e95159848494524d5d15a59028c539","kind":"tag","published_at":"2023-05-07T10:50:33.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.5","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.5","dependencies_parsed_at":"2023-06-02T00:22:58.335Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.5/manifests"},{"name":"v0.5.4","sha":"f9ab2fea0e35aafb342069745e7c612a092c2802","kind":"tag","published_at":"2023-05-06T09:50:29.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.4","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.4","dependencies_parsed_at":"2023-06-02T00:22:55.473Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.4/manifests"},{"name":"v0.5.3","sha":"9c69e6145496b6307747737f4710683db0535a56","kind":"tag","published_at":"2023-04-28T06:47:14.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.3","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.3","dependencies_parsed_at":"2023-06-02T00:22:55.387Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.3/manifests"},{"name":"v0.5.2","sha":"3e097c27f0fb2124b5addd6f2dd463884a3938ec","kind":"tag","published_at":"2023-04-25T13:14:15.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.2","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.2","dependencies_parsed_at":"2023-06-02T00:22:57.160Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.2/manifests"},{"name":"v0.5.1","sha":"e056ff96a6f1bbd479268d199cc7aa81c79023b1","kind":"tag","published_at":"2023-04-21T20:58:37.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.1","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.1","dependencies_parsed_at":"2023-06-02T00:22:55.742Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.1/manifests"},{"name":"v0.5.0","sha":"8fa135dc3a659a8c78f524d01567d5e8decf3d48","kind":"tag","published_at":"2023-04-16T21:06:21.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.5.0","html_url":"https://github.com/release-plz/action/releases/tag/v0.5.0","dependencies_parsed_at":"2023-06-02T00:22:54.574Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.5.0/manifests"},{"name":"v0.4","sha":"2a0835053636cc6d0b102698748f8da3eddf1ec2","kind":"tag","published_at":"2023-04-05T23:02:44.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4","html_url":"https://github.com/release-plz/action/releases/tag/v0.4","dependencies_parsed_at":"2026-09-24T13:22:58.749Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4/manifests"},{"name":"v0.4.19","sha":"2a0835053636cc6d0b102698748f8da3eddf1ec2","kind":"tag","published_at":"2023-04-05T23:02:32.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.19","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.19","dependencies_parsed_at":"2023-06-02T00:22:55.295Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.19/manifests"},{"name":"v0.4.18","sha":"602d60e8250a71a98b3e6cd1ed4947d100364063","kind":"tag","published_at":"2023-04-03T20:30:35.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.18","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.18","dependencies_parsed_at":"2023-06-02T00:22:54.554Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.18/manifests"},{"name":"v0.4.17","sha":"c87f4601f70b225ffeb6b0f6d8fecc5732e23c14","kind":"tag","published_at":"2023-04-02T16:09:43.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.17","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.17","dependencies_parsed_at":"2023-06-02T00:22:54.653Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.17/manifests"},{"name":"v0.4.16","sha":"908a75bcf7aaa5c51ba8dec4070e3f8495431765","kind":"tag","published_at":"2023-04-02T11:31:44.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.16","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.16","dependencies_parsed_at":"2023-06-02T00:22:55.232Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.16/manifests"},{"name":"v0.4.15","sha":"4a92a8e15582ac9afbb4a4a172be208675d79963","kind":"tag","published_at":"2023-04-02T10:08:57.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.15","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.15","dependencies_parsed_at":"2023-06-02T00:22:55.416Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.15/manifests"},{"name":"v0.4.14","sha":"77cef1ccb5eeb900e4dfdac7b9fb933af8ad7a0d","kind":"tag","published_at":"2023-03-27T21:32:07.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.14","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.14","dependencies_parsed_at":"2023-06-02T00:22:53.639Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.14/manifests"},{"name":"v0.4.13","sha":"68d0309e94817015321ba69fe9de5fce0d0663f9","kind":"tag","published_at":"2023-03-19T10:42:15.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.13","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.13","dependencies_parsed_at":"2023-06-02T00:22:54.691Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.13/manifests"},{"name":"v0.4.12","sha":"d1a81ee8e569ae6224d9da991b485d05e4119378","kind":"tag","published_at":"2023-03-17T23:41:50.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.12","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.12","dependencies_parsed_at":"2023-06-02T00:22:54.467Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.12/manifests"},{"name":"v0.4.11","sha":"016706e9c926fd4eb45f33887e32e72d53c80751","kind":"tag","published_at":"2023-03-13T22:31:03.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.11","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.11","dependencies_parsed_at":"2023-06-02T00:22:53.960Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.11/manifests"},{"name":"v0.4.10","sha":"b1af4a66282303a079c381238ba6c35665475c0a","kind":"tag","published_at":"2023-03-10T14:05:10.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.10","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.10","dependencies_parsed_at":"2023-06-02T00:22:54.588Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.10/manifests"},{"name":"v0.4.9","sha":"e29d0a1f48768acd8a2da2b353ce5e37351c2259","kind":"tag","published_at":"2023-03-09T07:46:24.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.9","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.9","dependencies_parsed_at":"2023-06-02T00:22:54.578Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.9/manifests"},{"name":"v0.4.8","sha":"9d9224745c21f7d039bc561b1840e4a8b14fd47e","kind":"tag","published_at":"2023-03-05T00:32:34.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.8","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.8","dependencies_parsed_at":"2023-06-02T00:22:54.606Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.8/manifests"},{"name":"v0.4.7","sha":"a6ad402621dc94ba37b9cf349cd369c6bb4e8a1c","kind":"tag","published_at":"2023-02-28T17:55:04.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.7","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.7","dependencies_parsed_at":"2023-06-02T00:22:51.009Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.7/manifests"},{"name":"v0.4.6","sha":"f2c386471af5325eafb554c9cc64db65db064783","kind":"tag","published_at":"2023-02-26T22:56:41.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.6","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.6","dependencies_parsed_at":"2023-06-02T00:22:51.048Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.6/manifests"},{"name":"v0.4.5","sha":"94118d5a2f245cb18ae1e59961f5edff429c2d47","kind":"tag","published_at":"2023-02-26T14:22:40.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.5","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.5","dependencies_parsed_at":"2023-06-02T00:22:50.294Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.5/manifests"},{"name":"v0.4.4","sha":"1e01f8c87e30264a7505b44f8fefd0a4830bf74f","kind":"tag","published_at":"2023-02-26T11:16:21.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.4","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.4","dependencies_parsed_at":"2023-06-02T00:22:51.408Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.4/manifests"},{"name":"v0.4.3","sha":"722ee6ddddb1968123e59d416f4e8fd743a96c0d","kind":"tag","published_at":"2023-02-26T11:03:01.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.3","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.3","dependencies_parsed_at":"2023-06-02T00:22:51.016Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.3/manifests"},{"name":"v0.4.2","sha":"d058140e3843f8192afa249f6f53f4dccbaa5d3c","kind":"tag","published_at":"2023-02-26T10:37:26.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.2","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.2","dependencies_parsed_at":"2023-06-02T00:22:51.131Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.2/manifests"},{"name":"v0.4.1","sha":"8818d97d25a0fb81d6b9207b15e9c7fbed761c84","kind":"tag","published_at":"2023-02-26T10:23:09.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.1","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.1","dependencies_parsed_at":"2023-06-02T00:22:50.582Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.1/manifests"},{"name":"v0.4.0","sha":"1591baa5f8112b9b0531f9329a04a3d12171bc83","kind":"tag","published_at":"2023-02-19T22:06:38.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.4.0","html_url":"https://github.com/release-plz/action/releases/tag/v0.4.0","dependencies_parsed_at":"2023-06-02T00:22:49.572Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.4.0/manifests"},{"name":"v0.3.0","sha":"b6f4c4dc20306685154e2b4310dfbc2028d28953","kind":"tag","published_at":"2023-01-08T21:35:54.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.3.0","html_url":"https://github.com/release-plz/action/releases/tag/v0.3.0","dependencies_parsed_at":"2023-06-02T00:22:49.567Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.3.0/manifests"},{"name":"v0.2.3","sha":"4383c354731205c0f06d985d9711c0e054ff48ac","kind":"tag","published_at":"2023-01-07T21:40:13.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.2.3","html_url":"https://github.com/release-plz/action/releases/tag/v0.2.3","dependencies_parsed_at":"2023-06-02T00:22:49.811Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.2.3/manifests"},{"name":"v0.2.2","sha":"101d1a8e79bd72ee019ce35f39abe5a3a4a4e653","kind":"tag","published_at":"2022-05-14T21:11:35.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.2.2","html_url":"https://github.com/release-plz/action/releases/tag/v0.2.2","dependencies_parsed_at":"2023-05-30T18:14:13.234Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.2.2/manifests"},{"name":"v0.2.1","sha":"360443932a88a60ff18cfdb5c776c33f34b52e56","kind":"tag","published_at":"2022-05-14T13:46:42.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.2.1","html_url":"https://github.com/release-plz/action/releases/tag/v0.2.1","dependencies_parsed_at":"2023-05-30T18:14:13.598Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.2.1/manifests"},{"name":"v0.2.0","sha":"9f2c676d766365bc0722daa69cc7c8a1337798cd","kind":"tag","published_at":"2022-05-10T13:31:50.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.2.0","html_url":"https://github.com/release-plz/action/releases/tag/v0.2.0","dependencies_parsed_at":"2023-05-30T18:14:17.470Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.2.0/manifests"},{"name":"v0.1.2","sha":"76810f35afa06de2548a2c28c12a037f353bd512","kind":"tag","published_at":"2022-04-15T08:44:25.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.1.2","html_url":"https://github.com/release-plz/action/releases/tag/v0.1.2","dependencies_parsed_at":"2023-05-30T18:14:17.859Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.1.2/manifests"},{"name":"v0.1.1","sha":"64073d054dbefbda17b31c844081de5279dee04b","kind":"tag","published_at":"2022-04-07T17:21:33.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.1.1","html_url":"https://github.com/release-plz/action/releases/tag/v0.1.1","dependencies_parsed_at":"2023-05-30T18:14:18.204Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.1.1/manifests"},{"name":"v0.1.0","sha":"64073d054dbefbda17b31c844081de5279dee04b","kind":"commit","published_at":"2022-04-03T17:23:50.000Z","download_url":"https://codeload.github.com/release-plz/action/tar.gz/v0.1.0","html_url":"https://github.com/release-plz/action/releases/tag/v0.1.0","dependencies_parsed_at":"2023-05-30T18:14:18.505Z","dependency_job_id":null,"purl":"pkg:github/release-plz/action@v0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/tags/v0.1.0/manifests"}]},"repo_metadata_updated_at":"2026-09-25T23:13:27.519Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":37.16500553709856,"dependent_packages_count":0.0,"stargazers_count":4.242999525391552,"forks_count":5.951589938300902,"docker_downloads_count":null,"average":11.839898750197753},"purl":"pkg:githubactions/release-plz/action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/release-plz/action","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/release-plz/action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/release-plz/action/dependencies","status":null,"funding_links":["https://github.com/sponsors/release-plz","https://opencollective.com/release-plz"],"critical":null,"issue_metadata":{"last_synced_at":"2026-09-18T21:09:25.254Z","issues_count":17,"pull_requests_count":241,"avg_time_to_close_issue":599764.0,"avg_time_to_close_pull_request":63251.63157894737,"issues_closed_count":13,"pull_requests_closed_count":228,"pull_request_authors_count":13,"issue_authors_count":7,"avg_comments_per_issue":2.0,"avg_comments_per_pull_request":0.17012448132780084,"merged_pull_requests_count":219,"bot_issues_count":1,"bot_pull_requests_count":42,"past_year_issues_count":1,"past_year_pull_requests_count":39,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":68736.72727272728,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":33,"past_year_pull_request_authors_count":2,"past_year_issue_authors_count":1,"past_year_avg_comments_per_issue":0.0,"past_year_avg_comments_per_pull_request":0.02564102564102564,"past_year_bot_issues_count":1,"past_year_bot_pull_requests_count":37,"past_year_merged_pull_requests_count":32,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/release-plz%2Faction/issues","maintainers":[{"login":"marcoieni","count":194,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/marcoieni"},{"login":"MarcoIeni","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/MarcoIeni"}],"active_maintainers":[{"login":"marcoieni","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/marcoieni"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/release-plz%2Faction/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/release-plz%2Faction/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/release-plz%2Faction/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/release-plz%2Faction/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/release-plz%2Faction/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/release-plz%2Faction/codemeta","maintainers":[]}