{"id":7742603,"name":"erzz/codeclimate-standalone","ecosystem":"actions","description":"Runs a detached version of CodeClimate which reports only in the workflow and does not require the CodeClimate Service","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/erzz/codeclimate-standalone","keywords_array":["code-quality","code-quality-analyzer","codeclimate","quality","testing"],"namespace":"erzz","versions_count":5,"first_release_published_at":"2021-05-18T08:51:33.000Z","latest_release_published_at":"2023-03-06T09:26:46.000Z","latest_release_number":"v0.0.5","last_synced_at":"2026-05-17T19:46:34.887Z","created_at":"2023-05-17T08:42:30.453Z","updated_at":"2026-05-17T19:46:34.887Z","registry_url":"https://github.com/erzz/codeclimate-standalone","install_command":null,"documentation_url":null,"metadata":{"name":"Code Climate Standalone","author":"Sean Erswell-Liljefelt","description":"Runs a detached version of CodeClimate which reports only in the workflow and does not require the CodeClimate Service","branding":{"color":"gray-dark","icon":"chevrons-up"},"inputs":{"config_file":{"description":"Optionally provide a path to your codeclimate.yml relative to your project","required":false,"default":".codeclimate.yml"},"html_report":{"description":"Should a faster, second, execution occur in order to generate an HTML report","required":false,"default":"false"},"info_threshold":{"description":"The number of findings of this severity allowed before the job returns a failure","required":false,"default":"0"},"minor_threshold":{"description":"The number of findings of this severity allowed before the job returns a failure","required":false,"default":"0"},"major_threshold":{"description":"The number of findings of this severity allowed before the job returns a failure","required":false,"default":"0"},"critical_threshold":{"description":"The number of findings of this severity allowed before the job returns a failure","required":false,"default":"0"},"blocker_threshold":{"description":"The number of findings of this severity allowed before the job returns a failure","required":false,"default":"0"}},"outputs":{"info_findings":{"description":"The number of findings of severity INFO","value":"${{ steps.cc.outputs.info }}"},"minor_findings":{"description":"The number of findings of severity MINOR","value":"${{ steps.cc.outputs.minor }}"},"major_findings":{"description":"The number of findings of severity MAJOR","value":"${{ steps.cc.outputs.major }}"},"critical_findings":{"description":"The number of findings of severity CRITICAL","value":"${{ steps.cc.outputs.critical }}"},"blocker_findings":{"description":"The number of findings of severity BLOCKER","value":"${{ steps.cc.outputs.blocker }}"}},"runs":{"using":"composite","steps":[{"name":"Code Climate","shell":"bash","id":"cc","env":{"CC_CONF":"${{ inputs.config_file }}","CC_BLOCKERS_ALLOWED":"${{ inputs.blocker_threshold }}","CC_CRITICAL_ALLOWED":"${{ inputs.critical_threshold }}","CC_MAJOR_ALLOWED":"${{ inputs.major_threshold }}","CC_MINOR_ALLOWED":"${{ inputs.minor_threshold }}","CC_INFO_ALLOWED":"${{ inputs.info_threshold }}"},"run":"# If no configuration supplied the job will run with Code Climate's default settings\n# and language detection. Providing your own config is highly recommended for speed \n# and accuracy\n\necho \"#### CONFIG ####\"\nif [ -f .codeclimate.yml ] || cp \"$CC_CONF\" .codeclimate.yml; then \n  echo \"Using the repository code climate configuration\"\nelse\n  echo \"::warning::No configuration found, using Code Climate's default configuration\"\nfi\n\n# Run once for JSON output\necho \"#### INITIAL RUN ####\"\ndocker run \\\n  --env CODECLIMATE_CODE=\"$PWD\" \\\n  --volume \"$PWD\":/code \\\n  --volume /var/run/docker.sock:/var/run/docker.sock \\\n  --volume /tmp/cc:/tmp/cc \\\n  codeclimate/codeclimate analyze -f json \u003e raw.json\n\n# Strip the json to only issues\njq -c 'map(select(.type | test(\"issue\"; \"i\")))' raw.json \u003e codeclimate-report.json\n\n# Parse to provide simple job output\nTOTAL_ISSUES=$(jq '. | length' codeclimate-report.json)\nTOTAL_BLOCKER=$(jq 'map(select(.severity == \"blocker\")) | length' codeclimate-report.json)\nTOTAL_CRITICAL=$(jq 'map(select(.severity == \"critical\")) | length' codeclimate-report.json)\nTOTAL_MAJOR=$(jq 'map(select(.severity == \"major\")) | length' codeclimate-report.json)\nTOTAL_MINOR=$(jq 'map(select(.severity == \"minor\")) | length' codeclimate-report.json)\nTOTAL_INFO=$(jq 'map(select(.severity == \"info\")) | length' codeclimate-report.json)\n\n# Set outputs\necho \"total=$TOTAL_ISSUES\" \u003e\u003e $GITHUB_OUTPUT\necho \"info=$TOTAL_INFO\" \u003e\u003e $GITHUB_OUTPUT\necho \"minor=$TOTAL_MINOR\" \u003e\u003e $GITHUB_OUTPUT\necho \"major=$TOTAL_MAJOR\" \u003e\u003e $GITHUB_OUTPUT\necho \"critical=$TOTAL_CRITICAL\" \u003e\u003e $GITHUB_OUTPUT\necho \"blocker=$TOTAL_BLOCKER\" \u003e\u003e $GITHUB_OUTPUT\n"},{"name":"Generate HTML Report","shell":"bash","env":{"CC_CONF":"${{ inputs.config_file }}","HTML_REPORT":"${{ inputs.html_report }}"},"run":"if [ \"$HTML_REPORT\" = true ]; then\n  # If no configuration supplied the job will run with Code Climate's default settings\n  # and language detection. Providing your own config is highly recommended for speed \n  # and accuracy\n\n  echo \"#### CONFIG ####\"\n  if [ -f .codeclimate.yml ] || cp \"$CC_CONF\" .codeclimate.yml; then \n    echo \"Using the repository code climate configuration\"\n  else\n    echo \"::warning::No configuration found, using Code Climate's default configuration\"\n  fi\n\n  # Run for HTML output\n  echo \"#### GENERATING HTML VERSION ####\"\n  docker run \\\n    --env CODECLIMATE_CODE=\"$PWD\" \\\n    --volume \"$PWD\":/code \\\n    --volume /var/run/docker.sock:/var/run/docker.sock \\\n    --volume /tmp/cc:/tmp/cc \\\n    codeclimate/codeclimate analyze -f html \u003e codeclimate-report.html\nelse\n  echo \"HTML REPORT not requested, skipping...\"\nfi\n"},{"name":"Parse Result","shell":"bash","env":{"CC_BLOCKERS_ALLOWED":"${{ inputs.blocker_threshold }}","CC_CRITICAL_ALLOWED":"${{ inputs.critical_threshold }}","CC_MAJOR_ALLOWED":"${{ inputs.major_threshold }}","CC_MINOR_ALLOWED":"${{ inputs.minor_threshold }}","CC_INFO_ALLOWED":"${{ inputs.info_threshold }}"},"run":"# Output in logs\necho \"#### RESULT ####\"\necho \"total_issues: ${{ steps.cc.outputs.total }}\"\necho \"info: ${{ steps.cc.outputs.info }} allowed: $CC_INFO_ALLOWED\"\necho \"minor: ${{ steps.cc.outputs.minor }} allowed: $CC_MINOR_ALLOWED\"\necho \"major: ${{ steps.cc.outputs.major }} allowed: $CC_MAJOR_ALLOWED\"\necho \"critical: ${{ steps.cc.outputs.critical }} allowed: $CC_CRITICAL_ALLOWED\"\necho \"blocker: ${{ steps.cc.outputs.blocker }} allowed: $CC_BLOCKERS_ALLOWED\"\n\n# Pass or Fail the job depending on the findings / inputs\nif [ ${{ steps.cc.outputs.blocker }} -gt \"$CC_BLOCKERS_ALLOWED\" ] || [ ${{ steps.cc.outputs.critical }} -gt \"$CC_CRITICAL_ALLOWED\" ] || [ ${{ steps.cc.outputs.major }} -gt \"$CC_MAJOR_ALLOWED\" ] || [ ${{ steps.cc.outputs.minor }} -gt \"$CC_MINOR_ALLOWED\" ] || [ ${{ steps.cc.outputs.info }} -gt \"$CC_INFO_ALLOWED\" ]; then\n  exit 1\nelse\n  exit 0\nfi\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":40557130,"uuid":"368211370","full_name":"erzz/codeclimate-standalone","owner":"erzz","description":"Runs a detached version of CodeClimate which reports only in the workflow and does not require the CodeClimate Service","archived":false,"fork":false,"pushed_at":"2025-08-31T09:45:34.000Z","size":43,"stargazers_count":10,"open_issues_count":5,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-03T18:59:30.747Z","etag":null,"topics":["code-quality","code-quality-analyzer","codeclimate","quality","testing"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/erzz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-05-17T14:16:11.000Z","updated_at":"2025-08-27T12:27:20.000Z","dependencies_parsed_at":"2025-04-14T04:07:21.163Z","dependency_job_id":"3c510622-132b-4bc6-8d68-99e47348777a","html_url":"https://github.com/erzz/codeclimate-standalone","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/erzz/codeclimate-standalone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erzz","download_url":"https://codeload.github.com/erzz/codeclimate-standalone/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/sbom","scorecard":{"id":382089,"data":{"date":"2025-08-11","repo":{"name":"github.com/erzz/codeclimate-standalone","commit":"49bbc67be9d538347efafbc582846819331f618b"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":3.8,"checks":[{"name":"Code-Review","score":0,"reason":"Found 0/7 approved changesets -- score normalized to 0","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":0,"reason":"0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"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":"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":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/release.yml:1","Warn: no topLevel permission defined: .github/workflows/sonar.yml:1","Warn: no topLevel permission defined: .github/workflows/tests.yml:1","Info: no jobLevel write permissions found"],"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":"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/release.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/erzz/codeclimate-standalone/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:20: update your workflow using https://app.stepsecurity.io/secureworkflow/erzz/codeclimate-standalone/release.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/sonar.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/erzz/codeclimate-standalone/sonar.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/sonar.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/erzz/codeclimate-standalone/sonar.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/tests.yml:11: update your workflow using https://app.stepsecurity.io/secureworkflow/erzz/codeclimate-standalone/tests.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/tests.yml:15: update your workflow using https://app.stepsecurity.io/secureworkflow/erzz/codeclimate-standalone/tests.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/tests.yml:28: update your workflow using https://app.stepsecurity.io/secureworkflow/erzz/codeclimate-standalone/tests.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/tests.yml:39: update your workflow using https://app.stepsecurity.io/secureworkflow/erzz/codeclimate-standalone/tests.yml/main?enable=pin","Info:   0 out of   6 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   2 third-party GitHubAction 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":"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":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"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":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"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":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: MIT License: 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":"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":-1,"reason":"internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration","details":null,"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":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 24 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"}}]},"last_synced_at":"2025-08-18T15:41:57.633Z","repository_id":40557130,"created_at":"2025-08-18T15:41:57.633Z","updated_at":"2025-08-18T15:41:57.633Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273516993,"owners_count":25119765,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"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":"erzz","name":"Sean Erswell-Liljefelt","uuid":"58994586","kind":"user","description":"Principal Software Engineer with a passion for DevOps \u0026 making stuff do other stuff","email":"","website":null,"location":"Älmhult, Sweden","twitter":"erzz","company":"@ingka-group-digital ","icon_url":"https://avatars.githubusercontent.com/u/58994586?u=e7b1c7d82c3d47655e8a22149d9cb6fafb08fe46\u0026v=4","repositories_count":17,"last_synced_at":"2025-03-27T15:02:23.328Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/erzz","funding_links":[],"total_stars":31,"followers":16,"following":2,"created_at":"2022-11-17T17:46:51.748Z","updated_at":"2025-03-27T15:02:23.328Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erzz","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erzz/repositories"},"tags":[{"name":"v0.0.5","sha":"5223b5a642387c2770e6321e1d4ddb07e2c9515c","kind":"commit","published_at":"2023-03-06T09:26:46.000Z","download_url":"https://codeload.github.com/erzz/codeclimate-standalone/tar.gz/v0.0.5","html_url":"https://github.com/erzz/codeclimate-standalone/releases/tag/v0.0.5","dependencies_parsed_at":"2023-06-02T00:52:09.607Z","dependency_job_id":null,"purl":"pkg:github/erzz/codeclimate-standalone@v0.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.5/manifests"},{"name":"v0.0.4","sha":"3c12f111dcf2abb94588178537a3bd302577fa02","kind":"commit","published_at":"2022-03-21T21:01:02.000Z","download_url":"https://codeload.github.com/erzz/codeclimate-standalone/tar.gz/v0.0.4","html_url":"https://github.com/erzz/codeclimate-standalone/releases/tag/v0.0.4","dependencies_parsed_at":"2023-05-31T01:40:48.608Z","dependency_job_id":null,"purl":"pkg:github/erzz/codeclimate-standalone@v0.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.4/manifests"},{"name":"v0.0.3","sha":"c64f116ae039742c26a8010247bfe201d8227ef2","kind":"commit","published_at":"2021-06-02T19:38:43.000Z","download_url":"https://codeload.github.com/erzz/codeclimate-standalone/tar.gz/v0.0.3","html_url":"https://github.com/erzz/codeclimate-standalone/releases/tag/v0.0.3","dependencies_parsed_at":"2023-05-31T01:40:48.939Z","dependency_job_id":null,"purl":"pkg:github/erzz/codeclimate-standalone@v0.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.3/manifests"},{"name":"v0.0.2","sha":"778c44f4b186cec602f8158cb385ddf9fc801d85","kind":"commit","published_at":"2021-05-18T09:03:29.000Z","download_url":"https://codeload.github.com/erzz/codeclimate-standalone/tar.gz/v0.0.2","html_url":"https://github.com/erzz/codeclimate-standalone/releases/tag/v0.0.2","dependencies_parsed_at":"2023-05-31T01:40:49.192Z","dependency_job_id":null,"purl":"pkg:github/erzz/codeclimate-standalone@v0.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.2/manifests"},{"name":"v0.0.1","sha":"6a05b29bb1cb637bff60d9c900ac23c9358d6c4b","kind":"commit","published_at":"2021-05-18T08:51:33.000Z","download_url":"https://codeload.github.com/erzz/codeclimate-standalone/tar.gz/v0.0.1","html_url":"https://github.com/erzz/codeclimate-standalone/releases/tag/v0.0.1","dependencies_parsed_at":"2023-05-31T01:40:49.466Z","dependency_job_id":null,"purl":"pkg:github/erzz/codeclimate-standalone@v0.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/tags/v0.0.1/manifests"}]},"repo_metadata_updated_at":"2025-09-04T04:52:50.501Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":7,"rankings":{"downloads":null,"dependent_repos_count":13.718903501822217,"dependent_packages_count":0.0,"stargazers_count":13.132625574393916,"forks_count":21.695452384725083,"docker_downloads_count":null,"average":12.136745365235305},"purl":"pkg:githubactions/erzz/codeclimate-standalone","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/erzz/codeclimate-standalone","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/erzz/codeclimate-standalone","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/erzz/codeclimate-standalone/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-31T12:02:21.325Z","issues_count":6,"pull_requests_count":19,"avg_time_to_close_issue":8004.8,"avg_time_to_close_pull_request":4680638.0,"issues_closed_count":5,"pull_requests_closed_count":16,"pull_request_authors_count":2,"issue_authors_count":3,"avg_comments_per_issue":0.6666666666666666,"avg_comments_per_pull_request":1.1578947368421053,"merged_pull_requests_count":15,"bot_issues_count":1,"bot_pull_requests_count":14,"past_year_issues_count":0,"past_year_pull_requests_count":1,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":null,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":0,"past_year_pull_request_authors_count":1,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":1,"past_year_merged_pull_requests_count":0,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/erzz%2Fcodeclimate-standalone/issues","maintainers":[{"login":"erzz","count":9,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/erzz"}],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/erzz%2Fcodeclimate-standalone/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/erzz%2Fcodeclimate-standalone/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/erzz%2Fcodeclimate-standalone/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/erzz%2Fcodeclimate-standalone/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/erzz%2Fcodeclimate-standalone/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/erzz%2Fcodeclimate-standalone/codemeta","maintainers":[]}