{"id":5801726,"name":"getsentry/action-release","ecosystem":"actions","description":"GitHub Action for creating a release on Sentry","homepage":"","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/getsentry/action-release","keywords_array":["sdk-adjacent","tag-production"],"namespace":"getsentry","versions_count":53,"first_release_published_at":"2020-07-14T20:15:36.000Z","latest_release_published_at":"2026-01-02T10:42:48.000Z","latest_release_number":"v3.5.0","last_synced_at":"2026-06-04T00:01:35.263Z","created_at":"2023-01-04T13:22:30.601Z","updated_at":"2026-06-04T00:01:35.264Z","registry_url":"https://github.com/getsentry/action-release","install_command":null,"documentation_url":null,"metadata":{"name":"Sentry Release","description":"GitHub Action for creating a release on Sentry","author":"Sentry","inputs":{"environment":{"description":"Set the environment for this release. E.g. \"production\" or \"staging\".\nOmit to skip adding deploy to release.","required":false},"sourcemaps":{"description":"Space-separated list of paths to JavaScript source maps.\nOmit to skip uploading sourcemaps.","required":false},"inject":{"description":"Injects Debug IDs into source files and source maps to ensure proper\nun-minifcation of your stacktraces.\nDoes nothing if \"sourcemaps\" was not set.","default":true,"required":false},"dist":{"description":"Unique identifier for the distribution, used to further segment your\nrelease.\nUsually your build number.","required":false},"finalize":{"description":"When false, omit marking the release as finalized and released.","default":true},"ignore_missing":{"description":"When the flag is set and the previous release commit was not found in\nthe repository, will create a release with the default commits count\ninstead of failing the command.","default":false,"required":false},"ignore_empty":{"description":"When the flag is set, command will not fail and just exit silently if no\nnew commits for a given release have been found.","default":false,"required":false},"started_at":{"description":"Unix timestamp of the release start date. Omit for current time.","required":false},"version":{"description":"Identifier that uniquely identifies the release.\nShould match the \"release\" property in your Sentry SDK init call if one\nwas set.\nOmit to auto-generate one.","deprecationMessage":"Deprecated: Use \"release\" instead.","required":false},"release":{"description":"Identifier that uniquely identifies the release.\nShould match the \"release\" property in your Sentry SDK init call if one\nwas set.\nOmit to auto-generate one.","required":false},"version_prefix":{"description":"Value prepended to auto-generated version.","deprecationMessage":"Deprecated: Use \"release_prefix\" instead.","required":false},"release_prefix":{"description":"Value prepended to auto-generated release version.","required":false},"set_commits":{"description":"Specify whether to set commits for the release.\nWhen \"manual\", you need to provide the repository, commit, and previous commit.\nOne of: \"auto\", \"skip\", \"manual\"","required":false},"repo":{"description":"The repository to set commits for in \"repo-owner/repo-name\" format.\nOnly used when \"set_commits\" is \"manual\".","required":false},"commit":{"description":"The commit SHA of the current release you are creating.\nOnly used when \"set_commits\" is \"manual\".","required":false},"previous_commit":{"description":"The commit SHA of the previous release.\nRequired when \"set_commits\" is \"manual\".","required":false},"projects":{"description":"Space-separated list of projects.\nDefaults to the env variable \"SENTRY_PROJECT\" if not provided.","required":false},"url_prefix":{"description":"Adds a prefix to source map urls after stripping them.","required":false},"strip_common_prefix":{"description":"Will remove a common prefix from uploaded filenames. Useful for removing\na path that is build-machine-specific.\nNote: Will not remove common prefixes across two or more directories\nprovided to \"sourcemap\". E.g. Setting\n\"sourcemap\": \"./dist/js ./dist/asset/js\" will strip \"./dist\" for the first\ndirectory and \"./dist/assets/js\" for the","default":false,"required":false},"working_directory":{"description":"Directory to collect sentry release information from.\nUseful when collecting information from a non-standard checkout directory.","required":false},"disable_telemetry":{"description":"The action sends telemetry data and crash reports to Sentry. This helps\nus improve the action.\nYou can turn this off by setting this flag.","default":false,"required":false},"disable_safe_directory":{"description":"The action needs access to the repo it runs in. For that we need to\nconfigure git to mark the repo directory a safe directory.\nYou can turn this off by setting this flag.","default":false,"required":false}},"runs":{"using":"composite","steps":[{"name":"Run docker image","if":"runner.os != 'macOS' \u0026\u0026 runner.os != 'Windows'","env":{"INPUT_ENVIRONMENT":"${{ inputs.environment }}","INPUT_INJECT":"${{ inputs.inject }}","INPUT_SOURCEMAPS":"${{ inputs.sourcemaps }}","INPUT_DIST":"${{ inputs.dist }}","INPUT_FINALIZE":"${{ inputs.finalize }}","INPUT_IGNORE_MISSING":"${{ inputs.ignore_missing }}","INPUT_IGNORE_EMPTY":"${{ inputs.ignore_empty }}","INPUT_STARTED_AT":"${{ inputs.started_at }}","INPUT_VERSION":"${{ inputs.version }}","INPUT_RELEASE":"${{ inputs.release }}","INPUT_VERSION_PREFIX":"${{ inputs.version_prefix }}","INPUT_RELEASE_PREFIX":"${{ inputs.release_prefix }}","INPUT_SET_COMMITS":"${{ inputs.set_commits }}","INPUT_REPO":"${{ inputs.repo }}","INPUT_COMMIT":"${{ inputs.commit }}","INPUT_PREVIOUS_COMMIT":"${{ inputs.previous_commit }}","INPUT_PROJECTS":"${{ inputs.projects }}","INPUT_URL_PREFIX":"${{ inputs.url_prefix }}","INPUT_STRIP_COMMON_PREFIX":"${{ inputs.strip_common_prefix }}","INPUT_WORKING_DIRECTORY":"${{ inputs.working_directory }}","INPUT_DISABLE_TELEMETRY":"${{ inputs.disable_telemetry }}","INPUT_DISABLE_SAFE_DIRECTORY":"${{ inputs.disable_safe_directory }}"},"uses":"docker://ghcr.io/getsentry/action-release-image:3.5.0"},{"name":"Mark GitHub workspace a safe directory in git","if":"${{ (runner.os == 'macOS' || runner.os == 'Windows')  \u0026\u0026 inputs.disable_safe_directory != 'true' }}","shell":"bash","run":"git config --global --add safe.directory \"$GITHUB_WORKSPACE\"\n"},{"name":"Save current Node version","if":"runner.os == 'macOS' || runner.os == 'Windows'","id":"node_version","shell":"bash","run":"if command -v node \u0026\u003e /dev/null; then\n  echo \"NODE_VERSION=$(node --version | sed 's/v//')\" \u003e\u003e $GITHUB_OUTPUT\nfi\n"},{"name":"Setup node","if":"runner.os == 'macOS' || runner.os == 'Windows'","uses":"actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020","with":{"node-version":"20.19.2"}},{"name":"Install Sentry CLI v2","if":"runner.os == 'macOS' || runner.os == 'Windows'","shell":"bash","run":"npm install --no-package-lock @sentry/cli@^2.4","working-directory":"${{ github.action_path }}"},{"name":"Run Release Action","if":"runner.os == 'macOS' || runner.os == 'Windows'","env":{"INPUT_ENVIRONMENT":"${{ inputs.environment }}","INPUT_INJECT":"${{ inputs.inject }}","INPUT_SOURCEMAPS":"${{ inputs.sourcemaps }}","INPUT_DIST":"${{ inputs.dist }}","INPUT_FINALIZE":"${{ inputs.finalize }}","INPUT_IGNORE_MISSING":"${{ inputs.ignore_missing }}","INPUT_IGNORE_EMPTY":"${{ inputs.ignore_empty }}","INPUT_STARTED_AT":"${{ inputs.started_at }}","INPUT_VERSION":"${{ inputs.version }}","INPUT_RELEASE":"${{ inputs.release }}","INPUT_VERSION_PREFIX":"${{ inputs.version_prefix }}","INPUT_RELEASE_PREFIX":"${{ inputs.release_prefix }}","INPUT_SET_COMMITS":"${{ inputs.set_commits }}","INPUT_REPO":"${{ inputs.repo }}","INPUT_COMMIT":"${{ inputs.commit }}","INPUT_PREVIOUS_COMMIT":"${{ inputs.previous_commit }}","INPUT_PROJECTS":"${{ inputs.projects }}","INPUT_URL_PREFIX":"${{ inputs.url_prefix }}","INPUT_STRIP_COMMON_PREFIX":"${{ inputs.strip_common_prefix }}","INPUT_WORKING_DIRECTORY":"${{ inputs.working_directory }}","INPUT_DISABLE_TELEMETRY":"${{ inputs.disable_telemetry }}","INPUT_DISABLE_SAFE_DIRECTORY":"${{ inputs.disable_safe_directory }}"},"shell":"bash","run":"npm run start","working-directory":"${{ github.action_path }}"},{"name":"Restore original Node version","if":"(runner.os == 'macOS' || runner.os == 'Windows') \u0026\u0026 steps.node_version.outputs.NODE_VERSION != ''","uses":"actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020","with":{"node-version":"${{ steps.node_version.outputs.NODE_VERSION }}"}}]},"branding":{"icon":"triangle","color":"purple"},"default_branch":"master","path":null},"repo_metadata":{"id":37832539,"uuid":"273043452","full_name":"getsentry/action-release","owner":"getsentry","description":"GitHub Action for creating a release on Sentry","archived":false,"fork":false,"pushed_at":"2026-03-31T01:19:10.000Z","size":13319,"stargazers_count":490,"open_issues_count":25,"forks_count":57,"subscribers_count":38,"default_branch":"master","last_synced_at":"2026-03-31T04:14:30.495Z","etag":null,"topics":["sdk-adjacent","tag-production"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/getsentry.png","metadata":{"funding":{"custom":["https://sentry.io/pricing/","https://sentry.io/"]},"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-06-17T17:53:54.000Z","updated_at":"2026-03-31T00:43:24.000Z","dependencies_parsed_at":"2026-03-31T03:09:05.794Z","dependency_job_id":null,"html_url":"https://github.com/getsentry/action-release","commit_stats":{"total_commits":122,"total_committers":19,"mean_commits":6.421052631578948,"dds":0.5573770491803278,"last_synced_commit":"ccab2088f17098afc92fc485a69b8371b393c476"},"previous_names":[],"tags_count":53,"template":false,"template_full_name":"getsentry/typescript-action","purl":"pkg:github/getsentry/action-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Faction-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Faction-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Faction-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Faction-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getsentry","download_url":"https://codeload.github.com/getsentry/action-release/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Faction-release/sbom","scorecard":{"id":424578,"data":{"date":"2025-08-11","repo":{"name":"github.com/getsentry/action-release","commit":"ae1d1cd5d658e784dcfdff36afe93f75b764cb82"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":5.9,"checks":[{"name":"Code-Review","score":2,"reason":"Found 8/30 approved changesets -- score normalized to 2","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Maintained","score":10,"reason":"12 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:84: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/build.yml:89: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/build.yml:92: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/build.yml:95: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/build.yml:109: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:122: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:148: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:167: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:187: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:207: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:213: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:235: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:240: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build.yml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/build.yml:63: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/build.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/create-release-tags.yml:19: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/create-release-tags.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:31: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/release.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:37: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/release.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/verify-dist.yml:25: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/verify-dist.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/verify-dist.yml:30: update your workflow using https://app.stepsecurity.io/secureworkflow/getsentry/action-release/verify-dist.yml/master?enable=pin","Warn: containerImage not pinned by hash: Dockerfile:3","Warn: containerImage not pinned by hash: Dockerfile:15","Info:   2 out of  15 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   7 third-party GitHubAction dependencies pinned","Info:   0 out of   2 containerImage dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: jobLevel 'contents' permission set to 'write': .github/workflows/build.yml:28","Warn: no topLevel permission defined: .github/workflows/build.yml:1","Warn: topLevel 'contents' permission set to 'write': .github/workflows/create-release-tags.yml:10","Warn: no topLevel permission defined: .github/workflows/release.yml:1","Warn: no topLevel permission defined: .github/workflows/verify-dist.yml:1"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: Apache License 2.0: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Branch-Protection","score":5,"reason":"branch protection is not maximal on development and all release branches","details":["Info: 'allow deletion' disabled on branch 'master'","Info: 'force pushes' disabled on branch 'master'","Warn: 'branch protection settings apply to administrators' is disabled on branch 'master'","Warn: 'stale review dismissal' is disabled on branch 'master'","Warn: required approving review count is 1 on branch 'master'","Warn: codeowners review is not required on branch 'master'","Warn: 'last push approval' is disabled on branch 'master'","Warn: no status checks found to merge onto branch 'master'","Info: PRs are required in order to make changes on branch 'master'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"Security-Policy","score":10,"reason":"security policy file detected","details":["Info: security policy file detected: github.com/getsentry/.github/SECURITY.md:1","Info: Found linked content: github.com/getsentry/.github/SECURITY.md:1","Info: Found disclosure, vulnerability, and/or timelines in security policy: github.com/getsentry/.github/SECURITY.md:1","Info: Found text in security policy: github.com/getsentry/.github/SECURITY.md:1"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Packaging","score":10,"reason":"packaging workflow detected","details":["Info: Project packages its releases by way of GitHub Actions.: .github/workflows/build.yml:69"],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"SAST","score":10,"reason":"SAST tool is run on all commits","details":["Info: all commits (8) are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}},{"name":"Vulnerabilities","score":3,"reason":"7 existing vulnerabilities detected","details":["Warn: Project is vulnerable to: GHSA-968p-4wvh-cqc8","Warn: Project is vulnerable to: GHSA-v6h2-p8h4-qcjw","Warn: Project is vulnerable to: GHSA-3787-6prv-h9w3","Warn: Project is vulnerable to: GHSA-9qxr-qj54-h672","Warn: Project is vulnerable to: GHSA-m4v8-wqvr-p9f7","Warn: Project is vulnerable to: GHSA-c76h-2ccp-4975","Warn: Project is vulnerable to: GHSA-cxrh-j4jr-qwg3"],"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}}]},"last_synced_at":"2025-08-19T01:58:10.009Z","repository_id":37832539,"created_at":"2025-08-19T01:58:10.009Z","updated_at":"2025-08-19T01:58:10.009Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31259381,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T00:21:46.390Z","status":"ssl_error","status_checked_at":"2026-04-01T00:09:28.497Z","response_time":111,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"getsentry","name":"Sentry","uuid":"1396951","kind":"organization","description":"Real-time crash reporting for your web apps, mobile apps, and games.","email":"support@sentry.io","website":"https://sentry.io","location":"United States of America","twitter":"getsentry","company":null,"icon_url":"https://avatars.githubusercontent.com/u/1396951?v=4","repositories_count":696,"last_synced_at":"2025-10-19T07:22:08.795Z","metadata":{"has_sponsors_listing":false,"funding":{"custom":["https://sentry.io/pricing/","https://sentry.io/"]}},"html_url":"https://github.com/getsentry","funding_links":["https://sentry.io/pricing/","https://sentry.io/"],"total_stars":98992,"followers":2575,"following":0,"created_at":"2022-11-02T16:22:50.307Z","updated_at":"2025-10-19T07:22:08.795Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getsentry","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getsentry/repositories"},"tags":[]},"repo_metadata_updated_at":"2026-04-01T00:32:12.338Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":620,"rankings":{"downloads":null,"dependent_repos_count":1.2961495800982412,"dependent_packages_count":0.0,"stargazers_count":0.6623356045000792,"forks_count":1.2549516716843607,"docker_downloads_count":null,"average":0.8033592140706702},"purl":"pkg:githubactions/getsentry/action-release","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/getsentry/action-release","docker_dependents_count":1,"docker_downloads_count":24392,"usage_url":"https://repos.ecosyste.ms/usage/actions/getsentry/action-release","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/getsentry/action-release/dependencies","status":null,"funding_links":["https://sentry.io/pricing/","https://sentry.io/"],"critical":null,"issue_metadata":{"last_synced_at":"2023-08-09T09:03:37.006Z","issues_count":57,"pull_requests_count":62,"avg_time_to_close_issue":6520982.52,"avg_time_to_close_pull_request":4892852.4655172415,"issues_closed_count":25,"pull_requests_closed_count":58,"pull_request_authors_count":19,"issue_authors_count":43,"avg_comments_per_issue":2.719298245614035,"avg_comments_per_pull_request":0.9032258064516129,"merged_pull_requests_count":44,"bot_issues_count":0,"bot_pull_requests_count":10,"past_year_issues_count":33,"past_year_pull_requests_count":26,"past_year_avg_time_to_close_issue":1727142.8235294118,"past_year_avg_time_to_close_pull_request":920989.3636363636,"past_year_issues_closed_count":17,"past_year_pull_requests_closed_count":22,"past_year_pull_request_authors_count":7,"past_year_issue_authors_count":22,"past_year_avg_comments_per_issue":2.090909090909091,"past_year_avg_comments_per_pull_request":1.1538461538461537,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":7,"past_year_merged_pull_requests_count":17},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Faction-release/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Faction-release/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Faction-release/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Faction-release/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Faction-release/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Faction-release/codemeta","maintainers":[]}