{"id":5800601,"name":"py-cov-action/python-coverage-comment-action","ecosystem":"actions","description":"Publish diff coverage report as PR comment, and create a coverage badge to display on the readme.\n","homepage":"https://github.com/marketplace/actions/python-coverage-comment","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/py-cov-action/python-coverage-comment-action","keywords_array":["actions","coverage","github-actions","python"],"namespace":"py-cov-action","versions_count":47,"first_release_published_at":"2022-01-14T11:01:06.000Z","latest_release_published_at":"2023-08-16T18:21:33.000Z","latest_release_number":"v3.1.0","last_synced_at":"2026-03-19T16:01:33.386Z","created_at":"2023-01-04T12:17:36.900Z","updated_at":"2026-03-19T16:01:33.387Z","registry_url":"https://github.com/py-cov-action/python-coverage-comment-action","install_command":null,"documentation_url":null,"metadata":{"name":"Python Coverage Comment","branding":{"icon":"umbrella","color":"purple"},"description":"Publish diff coverage report as PR comment, and create a coverage badge to display on the readme.\n","inputs":{"GITHUB_BASE_URL":{"description":"The base URL for the GitHub API, typically used to specify custom endpoints for GitHub Enterprise Server (e.g., `https://github.mycompany.com/api/v3`). Defaults to `https://api.github.com` for GitHub.com.\n","default":"https://api.github.com","required":false},"GITHUB_TOKEN":{"description":"A GitHub token to write comments and write the badge \u0026 coverage data to the repository. Set to `$ {{ github.token }}` (without the space between `$` and `{`).\n","required":true},"GITHUB_PR_RUN_ID":{"description":"Only useful on the \"workflow_run\" part of the workflow. Set to `$ {{ github.event.workflow_run.id }}`  (without the space between `$` and `{`).\n","required":false},"COMMENT_TEMPLATE":{"description":"[Advanced] Specify a different template for the comments that will be written on the PR. See the Action README documentation for how to use this properly.\n","required":false},"COVERAGE_DATA_BRANCH":{"description":"Name of the branch in which coverage data will be stored on the repository. Default is 'python-coverage-comment-action-data'. Please make sure that this branch is not protected. In monorepo setting, see SUBPROJECT_ID.\n","default":"python-coverage-comment-action-data","required":false},"COVERAGE_PATH":{"description":"Path to the directory under the git root where the coverage data is stored. Default is '.'.\n","default":".","required":false},"COMMENT_ARTIFACT_NAME":{"description":"Name of the artifact in which the body of the comment to post on the PR is stored. You typically don't have to change this unless you're already using this name for something else.\n","default":"python-coverage-comment-action","required":false},"COMMENT_FILENAME":{"description":"Name of the file in which the body of the comment to post on the PR is stored. In monorepo setting, see SUBPROJECT_ID.\n","default":"python-coverage-comment-action.txt","required":false},"SUBPROJECT_ID":{"description":"This setting is only necessary if you plan to run the action multiple times in the same repository. It will be appended to the value of all the settings that need to be unique, so as for the action to avoid mixing up results of multiple runs. Ideally, use dashes (`-`) rather than underscrores (`_`) to split words, for consistency. Affects `COMMENT_FILENAME`, `COVERAGE_DATA_BRANCH`.\n","default":null,"required":false},"MINIMUM_GREEN":{"description":"If the coverage percentage is above or equal to this value, the badge will be green.\n","default":100,"required":false},"MINIMUM_ORANGE":{"description":"If the coverage percentage is not green and above or equal to this value, the badge will be orange. Otherwise it will be red.\n","default":70,"required":false},"MAX_FILES_IN_COMMENT":{"description":"Maximum number of files to display in the comment. If there are more files than this number, they will only appear in the workflow summary. The selected files are the ones with the most new uncovered lines. The closer this number gets to 35, the higher the risk that it reaches GitHub's maximum comment size limit of 65536 characters. If you want more files, you may need to use a custom comment template. (Feel free to open an issue.)\n","default":25,"required":false},"MERGE_COVERAGE_FILES":{"description":"If true, will run `coverage combine` before reading the `.coverage` file.\n","default":false},"ANNOTATE_MISSING_LINES":{"description":"If true, will create an annotation on every line with missing coverage on a pull request.\n","default":false},"ANNOTATION_TYPE":{"description":"Only relevant if ANNOTATE_MISSING_LINES is set to true. This parameter allows you to choose between notice, warning and error as annotation type. For more information look here: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-a-notice-message\n","default":"warning"},"USE_GH_PAGES_HTML_URL":{"description":"If true, will use the GitHub Pages URL for the coverage report instead of the raw URL or an htmlpreview.github.io link.\n","default":false},"VERBOSE":{"description":"Deprecated, see https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging\n","default":false}},"outputs":{"activity_run":{"description":"The type of activity that was run. One of `process_pr`, `post_comment`, `save_coverage_data_files`.\n"},"comment_file_written":{"description":"A boolean indicating whether a comment file was written to COMMENT_FILENAME or not. If so, you'll need to run the action in workflow_run mode to post it. If \"false\", no comment file was written (likely because the comment was already posted to the PR). Only available when running in PR mode.\n"},"new_covered_lines":{"description":"The number of covered lines in the pull request. (Only available in PR mode)"},"new_num_statements":{"description":"The number of statements in the pull request. (Only available in PR mode)"},"new_percent_covered":{"description":"The coverage percentage of the pull request. (Only available in PR mode)"},"new_missing_lines":{"description":"The number of lines with missing coverage in the pull request. (Only available in PR mode)"},"new_excluded_lines":{"description":"The number of excluded lines in the pull request. (Only available in PR mode)"},"new_num_branches":{"description":"The number of branches in the pull request. (Only available in PR mode)"},"new_num_partial_branches":{"description":"The number of partial branches in the pull request. (Only available in PR mode)"},"new_covered_branches":{"description":"The number of covered branches in the pull request. (Only available in PR mode)"},"new_missing_branches":{"description":"The number of branches with missing coverage in the pull request. (Only available in PR mode)"},"reference_covered_lines":{"description":"The number of covered lines in the base branch. (Only available in PR mode)"},"reference_num_statements":{"description":"The number of statements in the base branch. (Only available in PR mode)"},"reference_percent_covered":{"description":"The coverage percentage of the base branch. (Only available in PR mode)"},"reference_missing_lines":{"description":"The number of lines with missing coverage in the base branch. (Only available in PR mode)"},"reference_excluded_lines":{"description":"The number of excluded lines in the base branch. (Only available in PR mode)"},"reference_num_branches":{"description":"The number of branches in the base branch. (Only available in PR mode)"},"reference_num_partial_branches":{"description":"The number of partial branches in the base branch. (Only available in PR mode)"},"reference_covered_branches":{"description":"The number of covered branches in the base branch. (Only available in PR mode)"},"reference_missing_branches":{"description":"The number of branches with missing coverage in the base branch. (Only available in PR mode)"},"diff_total_num_lines":{"description":"The total number of lines in the diff. (Only available in PR mode)"},"diff_total_num_violations":{"description":"The total number of lines with missing coverage in the diff. (Only available in PR mode)"},"diff_total_percent_covered":{"description":"The coverage percentage of the diff. (Only available in PR mode)"},"diff_num_changed_lines":{"description":"The number of changed lines in the diff. (Only available in PR mode)"}},"runs":{"using":"docker","image":"Dockerfile","env":{"GITHUB_BASE_URL":"${{ inputs.GITHUB_BASE_URL }}","GITHUB_TOKEN":"${{ inputs.GITHUB_TOKEN }}","GITHUB_PR_RUN_ID":"${{ inputs.GITHUB_PR_RUN_ID }}","COMMENT_TEMPLATE":"${{ inputs.COMMENT_TEMPLATE }}","COVERAGE_DATA_BRANCH":"${{ inputs.COVERAGE_DATA_BRANCH }}","COVERAGE_PATH":"${{ inputs.COVERAGE_PATH }}","COMMENT_ARTIFACT_NAME":"${{ inputs.COMMENT_ARTIFACT_NAME }}","COMMENT_FILENAME":"${{ inputs.COMMENT_FILENAME }}","SUBPROJECT_ID":"${{ inputs.SUBPROJECT_ID }}","MINIMUM_GREEN":"${{ inputs.MINIMUM_GREEN }}","MINIMUM_ORANGE":"${{ inputs.MINIMUM_ORANGE }}","MERGE_COVERAGE_FILES":"${{ inputs.MERGE_COVERAGE_FILES }}","ANNOTATE_MISSING_LINES":"${{ inputs.ANNOTATE_MISSING_LINES }}","ANNOTATION_TYPE":"${{ inputs.ANNOTATION_TYPE }}","VERBOSE":"${{ inputs.VERBOSE }}"}},"default_branch":"main","path":null},"repo_metadata":{"id":37976126,"uuid":"443596190","full_name":"py-cov-action/python-coverage-comment-action","owner":"py-cov-action","description":"Publish coverage report as PR comment, and create a coverage badge \u0026 dashboard to display on the Readme for Python projects, all inside GitHub without third party servers","archived":false,"fork":false,"pushed_at":"2025-12-01T01:12:22.000Z","size":6363,"stargazers_count":122,"open_issues_count":19,"forks_count":44,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-12-03T10:49:04.716Z","etag":null,"topics":["actions","coverage","github-actions","python"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/python-coverage-comment","language":"Python","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/py-cov-action.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2022-01-01T18:10:56.000Z","updated_at":"2025-12-01T01:06:11.000Z","dependencies_parsed_at":"2023-11-23T20:31:32.415Z","dependency_job_id":"59890c9a-036e-44ec-9895-f14b45cde5b4","html_url":"https://github.com/py-cov-action/python-coverage-comment-action","commit_stats":{"total_commits":384,"total_committers":13,"mean_commits":29.53846153846154,"dds":"0.43489583333333337","last_synced_commit":"93e3ad75ea00b1ead717bb0ab50a24cdae8fb2b2"},"previous_names":[],"tags_count":46,"template":false,"template_full_name":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/py-cov-action","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/sbom","scorecard":{"id":751036,"data":{"date":"2025-08-11","repo":{"name":"github.com/py-cov-action/python-coverage-comment-action","commit":"aebfe70922795b0f8a4ad6d23eb9779350460517"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":5.2,"checks":[{"name":"Code-Review","score":0,"reason":"Found 0/23 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":"Maintained","score":10,"reason":"30 commit(s) and 5 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":"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":"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: jobLevel 'contents' permission set to 'write': .github/workflows/ci.yml:17","Info: jobLevel 'actions' permission set to 'read': .github/workflows/coverage-comment.yml:15","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/coverage-comment.yml:17","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/e2e-external-phase-2.yml:20","Warn: jobLevel 'checks' permission set to 'write': .github/workflows/e2e-external-phase-2.yml:21","Info: jobLevel 'actions' permission set to 'read': .github/workflows/e2e-external-phase-2.yml:18","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/manual-release.yml:13","Info: jobLevel 'contents' permission set to 'read': .github/workflows/release.yml:19","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/release.yml:85","Warn: no topLevel permission defined: .github/workflows/ci.yml:1","Warn: no topLevel permission defined: .github/workflows/coverage-comment.yml:1","Warn: no topLevel permission defined: .github/workflows/e2e-delete-repo.yml:1","Warn: no topLevel permission defined: .github/workflows/e2e-external-phase-1.yml:1","Warn: no topLevel permission defined: .github/workflows/e2e-external-phase-2.yml:1","Warn: no topLevel permission defined: .github/workflows/e2e-private-link-in-pr.yml:1","Warn: no topLevel permission defined: .github/workflows/e2e-public-link-in-pr.yml:1","Warn: no topLevel permission defined: .github/workflows/manual-release.yml:1","Warn: no topLevel permission defined: .github/workflows/release.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":"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":"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/ci.yml:20: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:23: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:28: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:47: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:53: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/coverage-comment.yml:20: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/coverage-comment.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/e2e-external-phase-1.yml:23: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/e2e-external-phase-1.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/e2e-external-phase-2.yml:85: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/e2e-external-phase-2.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/e2e-external-phase-2.yml:92: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/e2e-external-phase-2.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/e2e-external-phase-2.yml:97: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/e2e-external-phase-2.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/manual-release.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/manual-release.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:25: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:28: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:31: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:37: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:40: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:43: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:50: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:56: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/release.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/release.yml:89: update your workflow using https://app.stepsecurity.io/secureworkflow/py-cov-action/python-coverage-comment-action/release.yml/main?enable=pin","Warn: containerImage not pinned by hash: Dockerfile:2: pin your Docker image by updating ghcr.io/py-cov-action/python-coverage-comment-action-base:v6 to ghcr.io/py-cov-action/python-coverage-comment-action-base:v6@sha256:73e84396242902db528c0bde30f49f9513fddadf439f8012b8edda80cde283e6","Warn: containerImage not pinned by hash: Dockerfile.build:5: pin your Docker image by updating python:3.12-slim to python:3.12-slim@sha256:d67a7b66b989ad6b6d6b10d428dcc5e0bfc3e5f88906e67d490c4d3daac57047","Warn: pipCommand not pinned by hash: Dockerfile:5","Warn: pipCommand not pinned by hash: Dockerfile.build:25","Info:   0 out of   9 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of  11 third-party GitHubAction dependencies pinned","Info:   0 out of   2 containerImage dependencies pinned","Info:   0 out of   2 pipCommand 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":"Packaging","score":10,"reason":"packaging workflow detected","details":["Info: Project packages its releases by way of GitHub Actions.: .github/workflows/release.yml:13"],"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":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 30 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-22T20:22:46.686Z","repository_id":37976126,"created_at":"2025-08-22T20:22:46.686Z","updated_at":"2025-08-22T20:22:46.686Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27541979,"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-12-06T02:00:06.463Z","response_time":60,"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":"py-cov-action","name":"py-cov-action","uuid":"113062226","kind":"organization","description":null,"email":null,"website":null,"location":null,"twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/113062226?v=4","repositories_count":2,"last_synced_at":"2023-03-06T03:53:07.831Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/py-cov-action","funding_links":[],"total_stars":null,"followers":null,"following":null,"created_at":"2022-11-16T04:14:52.570Z","updated_at":"2023-03-06T03:53:07.853Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/py-cov-action","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/py-cov-action/repositories"},"tags":[{"name":"v3.39","sha":"e623398c19eb3853a5572d4a516e10b15b5cefbc","kind":"commit","published_at":"2025-10-26T21:04:05.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.39","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.39","dependencies_parsed_at":null,"dependency_job_id":"eef3d4e2-b5a2-4670-9ff4-19410d799cd7","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.39","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.39","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.39/manifests"},{"name":"v3.38","sha":"91aaf3b39c7e2331c6bc77767ce017f5160c5f11","kind":"commit","published_at":"2025-09-15T07:08:59.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.38","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.38","dependencies_parsed_at":"2025-10-16T07:43:06.341Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.38","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.38","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.38/manifests"},{"name":"v3.37","sha":"0544a9c648672334d94ec5dd1add7410b4470ddc","kind":"commit","published_at":"2025-08-24T22:31:23.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.37","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.37","dependencies_parsed_at":"2025-08-27T05:34:34.174Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.37","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.37","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.37/manifests"},{"name":"v3.36","sha":"47f98f1f93ede434f4f30536140fbee9404c9d67","kind":"commit","published_at":"2025-08-20T21:56:00.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.36","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.36","dependencies_parsed_at":"2025-08-26T04:54:44.225Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.36","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.36","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.36/manifests"},{"name":"v3.35","sha":"91910686861e4e1d8282a267a896eb39d46240fb","kind":"commit","published_at":"2025-07-13T11:56:35.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.35","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.35","dependencies_parsed_at":"2025-07-15T06:06:33.718Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.35","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.35","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.35/manifests"},{"name":"v3.34","sha":"970a227e0c16ef4589a99a9970ab0ceb8c53059a","kind":"commit","published_at":"2025-06-04T21:14:39.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.34","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.34","dependencies_parsed_at":"2025-06-11T08:14:07.415Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.34","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.34","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.34/manifests"},{"name":"v3.33","sha":"0abd69a9baf90729d9b2d5b585fc790ec4e6f3dd","kind":"commit","published_at":"2025-05-28T15:46:45.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.33","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.33","dependencies_parsed_at":"2025-05-31T11:53:59.320Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.33","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.33","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.33/manifests"},{"name":"v3.32","sha":"fb02115d6115e7b3325dc3295fe1dcfb1919248a","kind":"commit","published_at":"2025-05-05T08:29:05.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.32","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.32","dependencies_parsed_at":null,"dependency_job_id":"133670bc-78b7-467c-bd5f-184858fa6710","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.32","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.32","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.32/manifests"},{"name":"v3.31","sha":"95add548fb8a55abc986917c367faf0c7792b66e","kind":"commit","published_at":"2025-05-05T08:01:56.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.31","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.31","dependencies_parsed_at":null,"dependency_job_id":"11118724-bcdb-4dfd-b5e8-62df3cfa36ed","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.31","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.31","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.31/manifests"},{"name":"v3.30","sha":"d1ff8fbb5ff80feedb3faa0f6d7b424f417ad0e1","kind":"commit","published_at":"2025-02-28T13:05:47.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.30","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.30","dependencies_parsed_at":"2025-03-09T04:14:52.284Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.30","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.30","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.30/manifests"},{"name":"v3.29","sha":"b2eb38dd175bf053189b35f738f9207278b00925","kind":"commit","published_at":"2024-10-05T09:56:52.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.29","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.29","dependencies_parsed_at":"2024-10-12T08:39:05.053Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.29","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.29","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.29/manifests"},{"name":"v3.28","sha":"014130faa9f5ff9f5f49e42f312ce2e7dd7b2c8b","kind":"commit","published_at":"2024-09-02T23:36:29.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.28","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.28","dependencies_parsed_at":"2024-09-04T07:43:51.180Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.28","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.28","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.28/manifests"},{"name":"v3.27","sha":"e6ee17f632217eae267a13fbeb4389dce5dc4a26","kind":"commit","published_at":"2024-08-08T09:12:08.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.27","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.27","dependencies_parsed_at":"2024-09-01T07:19:00.102Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.27","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.27","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.27/manifests"},{"name":"v3.26","sha":"623c592e0a504d72217e871d769f079a2bb5d5b6","kind":"commit","published_at":"2024-07-29T16:15:33.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.26","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.26","dependencies_parsed_at":"2024-08-01T10:12:13.102Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.26","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.26","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.26/manifests"},{"name":"v3.25","sha":"1fb87f8f1f10f147fd6262cbcd6ff16c8b0dfd39","kind":"commit","published_at":"2024-06-28T10:52:26.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.25","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.25","dependencies_parsed_at":null,"dependency_job_id":"0ad73f57-08d6-4477-a9bc-64bbe6749406","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.25","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.25/manifests"},{"name":"v3.24","sha":"44f4df022ec3c3cbb61e56e0b550a490bde8aa73","kind":"commit","published_at":"2024-06-06T23:20:34.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.24","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.24","dependencies_parsed_at":"2024-06-12T15:38:28.075Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.24","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.24/manifests"},{"name":"v3.23","sha":"b16205b76b824c17afe95a014fb22e58b4f239cb","kind":"commit","published_at":"2024-02-15T21:13:00.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.23","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.23","dependencies_parsed_at":"2024-02-17T04:07:04.652Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.23/manifests"},{"name":"v3.22","sha":"9af72a08cecb2447c92c982c3698b9bc93ed5fce","kind":"commit","published_at":"2024-02-07T10:11:59.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.22","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.22","dependencies_parsed_at":"2024-02-11T04:52:36.856Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.22/manifests"},{"name":"v3.21","sha":"cf213fab9b7f392ff237a9137174ad04045f393a","kind":"commit","published_at":"2024-01-17T16:48:36.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.21","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.21","dependencies_parsed_at":"2024-01-19T04:52:15.764Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.21","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.21/manifests"},{"name":"v3.20","sha":"6d40a8750fd94033caa979c55348ff946330bd8b","kind":"commit","published_at":"2024-01-06T14:50:30.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.20","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.20","dependencies_parsed_at":"2024-01-18T13:06:49.306Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.20","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.20/manifests"},{"name":"v3.19","sha":"a921cbadb1d75bd8589d26328adaf633b1ae099a","kind":"commit","published_at":"2024-01-01T22:55:32.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.19","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.19","dependencies_parsed_at":"2024-01-03T05:08:52.785Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.19/manifests"},{"name":"v3.18","sha":"1e4c7d57309b936a9f2780af1b822c1d4a33669c","kind":"commit","published_at":"2024-01-01T21:25:31.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.18","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.18","dependencies_parsed_at":"2024-01-03T05:08:52.786Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.18/manifests"},{"name":"v3.17","sha":"d69bfc0622e864d15b3c02deb3ff1283987fe18d","kind":"commit","published_at":"2023-12-24T09:37:10.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.17","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.17","dependencies_parsed_at":"2023-12-30T04:19:20.689Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.17/manifests"},{"name":"v3.16","sha":"127c420c0e89eaad20e5f13c72d86264047f7f7c","kind":"commit","published_at":"2023-12-23T21:24:46.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.16","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.16","dependencies_parsed_at":"2023-12-28T04:03:13.286Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.16/manifests"},{"name":"v3.15","sha":"8e1040d3a790bf2ecccd9cc9e2aef0b4d91a9c74","kind":"commit","published_at":"2023-10-13T11:45:25.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.15","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.15","dependencies_parsed_at":null,"dependency_job_id":"39df6c8a-1ba4-43e7-9a77-e28a2c2c9094","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.15/manifests"},{"name":"v3.14","sha":"be8e107ca74a0cd9c9de698fc669bf4c7538d768","kind":"commit","published_at":"2023-09-27T00:49:37.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.14","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.14","dependencies_parsed_at":"2023-09-29T05:44:58.517Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.14/manifests"},{"name":"v3.13","sha":"b00ad82e30d507e953a0af04f0d84de18a769224","kind":"commit","published_at":"2023-09-26T07:29:59.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.13","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.13","dependencies_parsed_at":"2023-10-01T05:12:56.662Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.13/manifests"},{"name":"v3.12","sha":"526de47d37d358f4fbb9b8ef6b89a82611bcbaa8","kind":"commit","published_at":"2023-09-23T00:03:38.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.12","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.12","dependencies_parsed_at":"2023-09-24T04:55:53.373Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.12/manifests"},{"name":"v3.11","sha":"d923f0ce2f3dc83f550317d5b5ff6845ef65dd04","kind":"commit","published_at":"2023-09-13T23:10:17.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.11","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.11","dependencies_parsed_at":"2023-09-16T08:25:41.000Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.11/manifests"},{"name":"v3.10","sha":"211af007cc43b3508cb8e21534865aea1d030d03","kind":"commit","published_at":"2023-09-13T15:09:09.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.10","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.10","dependencies_parsed_at":"2023-09-16T08:25:41.848Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.10/manifests"},{"name":"v3.9","sha":"0bbc72f55d183ef8c5bc3ebeb7ab099e42bf9b0e","kind":"commit","published_at":"2023-09-10T00:23:30.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.9","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.9","dependencies_parsed_at":"2023-09-13T05:42:35.271Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.9/manifests"},{"name":"v3.8","sha":"0cf2a09fa6edcdb9bf15d3726d4b781ff3b18437","kind":"commit","published_at":"2023-09-06T14:37:24.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.8","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.8","dependencies_parsed_at":"2023-09-08T04:26:35.264Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.8/manifests"},{"name":"v3.7","sha":"564271aa2b5f9fc0e814e578acdb588ddc811bb9","kind":"commit","published_at":"2023-09-05T09:42:29.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.7","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.7","dependencies_parsed_at":"2023-09-07T04:24:45.349Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.7/manifests"},{"name":"v3.6","sha":"f0eca87d03c89036b02aaf729f8b2788fbb1560a","kind":"commit","published_at":"2023-09-04T01:04:44.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.6","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.6","dependencies_parsed_at":"2023-09-06T04:51:58.730Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.6/manifests"},{"name":"v3.5","sha":"6bc78492dc29b9c31cb1aecea3cf191e94ba97d2","kind":"commit","published_at":"2023-09-02T16:07:47.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.5","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.5","dependencies_parsed_at":"2023-09-04T04:07:45.241Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.5/manifests"},{"name":"v3.4","sha":"16ccd40b7d40599a9b69ebe1d8558c37a0f740ea","kind":"commit","published_at":"2023-09-01T21:36:32.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.4","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.4","dependencies_parsed_at":"2023-09-04T04:07:45.433Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.4/manifests"},{"name":"v3.3","sha":"940a10960110b863901ddcd779f1a153ace50b66","kind":"commit","published_at":"2023-09-01T20:27:33.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.3","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.3","dependencies_parsed_at":"2023-09-04T04:07:47.187Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.3/manifests"},{"name":"v3","sha":"e79b1ab0aca0256139a9aef01def2ae8752e480d","kind":"commit","published_at":"2023-09-01T19:34:36.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3","dependencies_parsed_at":"2023-09-04T04:07:41.131Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3/manifests"},{"name":"v3.2","sha":"4c125198a7f68bf2322c1e111e1f247d2092f1c9","kind":"commit","published_at":"2023-08-28T08:34:33.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.2","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.2","dependencies_parsed_at":"2023-09-04T04:07:45.555Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.2/manifests"},{"name":"v3.1.0","sha":"b3d7e98bf5528b07d6951ef7a93e2b156f960112","kind":"commit","published_at":"2023-08-16T18:21:33.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.1.0","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.1.0","dependencies_parsed_at":"2023-08-20T08:14:12.274Z","dependency_job_id":null,"purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.1.0/manifests"},{"name":"v2.2.0","sha":"50a4569fee74ca0f7021a1d04370f2498dd0df33","kind":"commit","published_at":"2022-10-17T08:03:01.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v2.2.0","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v2.2.0","dependencies_parsed_at":"2023-05-31T20:56:11.705Z","dependency_job_id":"b1e6f9d0-0bd4-4452-9348-6a11a970a46f","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.2.0/manifests"},{"name":"v3.0.0","sha":"48708266a6e77ebf564b50d9cff2b7df9a25b458","kind":"commit","published_at":"2022-10-17T07:25:45.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v3.0.0","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v3.0.0","dependencies_parsed_at":"2023-05-31T20:56:10.547Z","dependency_job_id":"54e4e520-4f59-4eda-8c4c-06a79ab76434","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v3.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v3.0.0/manifests"},{"name":"v2.1.0","sha":"c16f8c68076bdfaf343ab1cf1bca96dee5c2d369","kind":"commit","published_at":"2022-07-02T16:02:08.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v2.1.0","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v2.1.0","dependencies_parsed_at":"2023-05-31T01:28:41.555Z","dependency_job_id":"a2213d3b-05f8-47dc-967e-534ae2d7d796","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.1.0/manifests"},{"name":"v2.0.2","sha":"5b071e2b89e2e17cc7cd9af75a55313439c3f0e3","kind":"commit","published_at":"2022-01-14T11:27:11.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v2.0.2","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v2.0.2","dependencies_parsed_at":"2023-05-31T01:28:42.225Z","dependency_job_id":"bf36f82b-325c-41ba-9f29-0eb45115d7a8","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v2.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.0.2/manifests"},{"name":"v2.0.1","sha":"76e7306c66074ac68cb1dded793ce096c4f18d5f","kind":"commit","published_at":"2022-01-14T11:14:31.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v2.0.1","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v2.0.1","dependencies_parsed_at":"2023-05-31T01:28:42.775Z","dependency_job_id":"4d2ba5eb-006e-4ec0-a2d5-aa962853ef7f","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v2.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.0.1/manifests"},{"name":"v2.0.0","sha":"12312886ec024214f6e0a85022f6fae6c1c5b5a1","kind":"commit","published_at":"2022-01-14T11:01:06.000Z","download_url":"https://codeload.github.com/py-cov-action/python-coverage-comment-action/tar.gz/v2.0.0","html_url":"https://github.com/py-cov-action/python-coverage-comment-action/releases/tag/v2.0.0","dependencies_parsed_at":"2023-05-31T01:28:43.363Z","dependency_job_id":"8dec359e-a1ee-41b4-91c7-a24497b0c9dd","purl":"pkg:github/py-cov-action/python-coverage-comment-action@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/tags/v2.0.0/manifests"}]},"repo_metadata_updated_at":"2025-12-06T11:15:48.276Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":58,"rankings":{"downloads":null,"dependent_repos_count":6.0560925368404375,"dependent_packages_count":0.0,"stargazers_count":4.534938995404849,"forks_count":3.222944065916653,"docker_downloads_count":null,"average":3.4534938995404847},"purl":"pkg:githubactions/py-cov-action/python-coverage-comment-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/py-cov-action/python-coverage-comment-action","docker_dependents_count":1,"docker_downloads_count":15,"usage_url":"https://repos.ecosyste.ms/usage/actions/py-cov-action/python-coverage-comment-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/py-cov-action/python-coverage-comment-action/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-12-01T03:00:49.423Z","issues_count":71,"pull_requests_count":542,"avg_time_to_close_issue":4491185.2549019605,"avg_time_to_close_pull_request":358401.94881889765,"issues_closed_count":51,"pull_requests_closed_count":508,"pull_request_authors_count":23,"issue_authors_count":43,"avg_comments_per_issue":2.8732394366197185,"avg_comments_per_pull_request":2.2785977859778597,"merged_pull_requests_count":481,"bot_issues_count":4,"bot_pull_requests_count":398,"past_year_issues_count":15,"past_year_pull_requests_count":122,"past_year_avg_time_to_close_issue":2010654.5,"past_year_avg_time_to_close_pull_request":406311.7450980392,"past_year_issues_closed_count":8,"past_year_pull_requests_closed_count":102,"past_year_pull_request_authors_count":12,"past_year_issue_authors_count":13,"past_year_avg_comments_per_issue":1.0666666666666667,"past_year_avg_comments_per_pull_request":2.0327868852459017,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":87,"past_year_merged_pull_requests_count":95,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/py-cov-action%2Fpython-coverage-comment-action/issues","maintainers":[{"login":"ewjoachim","count":98,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ewjoachim"},{"login":"kieferro","count":29,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/kieferro"}],"active_maintainers":[{"login":"ewjoachim","count":21,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ewjoachim"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/py-cov-action%2Fpython-coverage-comment-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/py-cov-action%2Fpython-coverage-comment-action/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/py-cov-action%2Fpython-coverage-comment-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/py-cov-action%2Fpython-coverage-comment-action/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/py-cov-action%2Fpython-coverage-comment-action/codemeta","maintainers":[]}