{"id":12119382,"name":"scientific-python/issue-from-pytest-log-action","ecosystem":"actions","description":"Create an issue for failed tests from a pytest-reportlog file.","homepage":null,"licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/scientific-python/issue-from-pytest-log-action","keywords_array":[],"namespace":"scientific-python","versions_count":16,"first_release_published_at":"2022-10-21T14:09:42.000Z","latest_release_published_at":"2026-02-03T22:19:53.000Z","latest_release_number":"v1.5.0","last_synced_at":"2026-05-19T13:00:54.136Z","created_at":"2025-09-19T15:33:30.797Z","updated_at":"2026-05-19T13:00:54.136Z","registry_url":"https://github.com/scientific-python/issue-from-pytest-log-action","install_command":null,"documentation_url":null,"metadata":{"name":"Create Issue From pytest log","description":"Create an issue for failed tests from a pytest-reportlog file.","inputs":{"log-path":{"description":"The path to the log file","required":true},"issue-title":{"description":"Title of issue being created or updated. Can be a parametrized string, in which case a new issue will be opened for all variations.","required":false,"default":"⚠️ Nightly upstream-dev CI failed ⚠️"},"issue-label":{"description":"Labels to apply to issue","required":false,"default":"CI"},"assignees":{"description":"Comma-separated users to assign to the issue (no spaces). All assigned users have to have commit rights.","required":false,"default":""}},"outputs":{},"branding":{"color":"red","icon":"alert-triangle"},"runs":{"using":"composite","steps":[{"name":"print environment information","shell":"bash -l {0}","run":"python --version\npython -m pip list\n"},{"name":"install dependencies","shell":"bash -l {0}","run":"python -m pip install pytest more-itertools\n"},{"name":"produce the issue body","shell":"bash -l {0}","run":"python $GITHUB_ACTION_PATH/parse_logs.py ${{ inputs.log-path }}\n"},{"name":"create the issue","uses":"actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd","with":{"github-token":"${{ github.token }}","script":"const fs = require('fs');\nconst pytest_logs = fs.readFileSync('pytest-logs.txt', 'utf8');\nconst assignees = \"${{inputs.assignees}}\".split(\",\");\nconst workflow_url = `https://github.com/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID}`;\nconst issue_body = `[Workflow Run URL](${workflow_url})\\n${pytest_logs}`;\n\nconst variables = {\n  owner: context.repo.owner,\n  name: context.repo.repo,\n  label: \"${{ inputs.issue-label }}\",\n  creator: \"app/github-actions\",\n  title: \"${{ inputs.issue-title }}\"\n};\nconst query_string = `repo:${variables.owner}/${variables.name} author:${variables.creator} label:${variables.label} is:open in:title ${variables.title}`;\n\n// Run GraphQL query against GitHub API to find the most recent open issue used for reporting failures\nconst query = `query {\n  search(query: \"${query_string}\", type:ISSUE, first: 1) {\n    edges {\n      node {\n        ... on Issue {\n          body\n          id\n          number\n        }\n      }\n    }\n  }\n}`;\n\nconst result = await github.graphql(query);\n\n// If no issue is open, create a new issue,\n// else update the body of the existing issue.\nif (result.search.edges.length === 0) {\n  github.rest.issues.create({\n    owner: variables.owner,\n    repo: variables.name,\n    body: issue_body,\n    title: variables.title,\n    labels: [variables.label],\n    assignees: assignees\n  });\n} else {\n  github.rest.issues.update({\n    owner: variables.owner,\n    repo: variables.name,\n    issue_number: result.search.edges[0].node.number,\n    body: issue_body\n  });\n}\n"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":62173744,"uuid":"555368081","full_name":"scientific-python/issue-from-pytest-log-action","owner":"scientific-python","description":"create issues from pytest-reportlog files","archived":false,"fork":false,"pushed_at":"2026-02-10T17:15:43.000Z","size":67,"stargazers_count":14,"open_issues_count":4,"forks_count":6,"subscribers_count":8,"default_branch":"main","last_synced_at":"2026-04-07T07:10:06.327Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scientific-python.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-10-21T12:49:20.000Z","updated_at":"2026-03-26T08:11:02.000Z","dependencies_parsed_at":"2023-02-12T11:15:54.329Z","dependency_job_id":"ad200ed1-8d9a-4aae-bac8-aa15e2c05279","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action","commit_stats":{"total_commits":39,"total_committers":4,"mean_commits":9.75,"dds":0.641025641025641,"last_synced_commit":"831733a1bb898c50fcb5b5d2ab483a13df4e09fd"},"previous_names":["scientific-python/issue-from-pytest-log-action","xarray-contrib/issue-from-pytest-log"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scientific-python","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31955920,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":"scientific-python","name":"Scientific Python","uuid":"41802190","kind":"organization","description":"Community developed, community owned","email":null,"website":"https://scientific-python.org/","location":null,"twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/41802190?v=4","repositories_count":50,"last_synced_at":"2026-04-07T07:04:05.149Z","metadata":{"has_sponsors_listing":true},"html_url":"https://github.com/scientific-python","funding_links":["https://github.com/sponsors/scientific-python"],"total_stars":1356,"followers":462,"following":0,"created_at":"2022-11-15T19:56:48.183Z","updated_at":"2026-04-07T07:04:05.149Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scientific-python","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scientific-python/repositories"},"tags":[{"name":"v1.5.0","sha":"8e905db353437cda1d6a773de245343fbfc940dd","kind":"commit","published_at":"2026-02-03T22:19:53.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.5.0","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.5.0/manifests"},{"name":"v1.4.0","sha":"558a3dfdd251069b328d3fded994824ddbefc47b","kind":"commit","published_at":"2025-09-14T17:52:02.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.4.0","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.4.0","dependencies_parsed_at":"2025-09-22T05:04:22.605Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.4.0/manifests"},{"name":"v1.3.0","sha":"f94477e45ef40e4403d7585ba639a9a3bcc53d43","kind":"commit","published_at":"2024-07-07T14:07:00.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.3.0","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.3.0","dependencies_parsed_at":"2024-07-11T05:55:23.522Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.3.0/manifests"},{"name":"v1.2.8","sha":"138db94bfe4b12ac11fc1aff307ee0835feab403","kind":"commit","published_at":"2023-12-05T16:14:14.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.2.8","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.2.8","dependencies_parsed_at":"2023-12-07T05:05:47.714Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.2.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.8/manifests"},{"name":"v1.2.7","sha":"90c1fee3417aa829b19830d214daf248802df624","kind":"commit","published_at":"2023-12-04T21:50:10.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.2.7","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.2.7","dependencies_parsed_at":"2023-12-06T05:08:51.512Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.2.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.7/manifests"},{"name":"v1.2.6","sha":"e358fd518d818ab2b8aa16cab81fbcc978463f27","kind":"commit","published_at":"2023-01-21T15:58:06.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.2.6","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.2.6","dependencies_parsed_at":"2023-06-02T01:03:03.943Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.2.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.6/manifests"},{"name":"v1.2.5","sha":"24fc30b9af05dc8e33bbe7317a90804e5d4a074c","kind":"commit","published_at":"2023-01-11T14:20:18.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.2.5","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.2.5","dependencies_parsed_at":"2023-06-02T01:03:03.930Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.2.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.5/manifests"},{"name":"v1.2.4","sha":"2e84bb481110592f34e0be33cd921715213b9f9c","kind":"commit","published_at":"2022-11-22T11:26:03.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.2.4","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.2.4","dependencies_parsed_at":"2023-06-01T10:34:13.969Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.2.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.4/manifests"},{"name":"v1.2.3","sha":"1bf68e1ba3dee74935fafab4462e3cb4dad69c85","kind":"commit","published_at":"2022-11-08T13:24:59.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.2.3","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.2.3","dependencies_parsed_at":"2023-06-01T10:34:15.281Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.3/manifests"},{"name":"v1.2.2","sha":"ecce62a50f63ae11dea8f77d38008afeb5987c7a","kind":"commit","published_at":"2022-11-08T11:12:51.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.2.2","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.2.2","dependencies_parsed_at":"2023-06-01T10:34:16.658Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.2/manifests"},{"name":"v1.2.1","sha":"edaf98b6598c8c56e78ca5f409cb3034ee26f14b","kind":"commit","published_at":"2022-11-08T10:41:13.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.2.1","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.2.1","dependencies_parsed_at":"2023-06-01T10:34:18.702Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2.1/manifests"},{"name":"v1.2","sha":"4dfec43f28e1c4f8883ca664cb23b5802f20b96b","kind":"commit","published_at":"2022-11-07T13:49:01.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.2","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.2","dependencies_parsed_at":"2023-06-01T10:34:19.533Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.2/manifests"},{"name":"v1.1","sha":"89ca5895ebd99c09f8222234a0976e7ff8b823a7","kind":"commit","published_at":"2022-10-27T18:18:35.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.1","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.1","dependencies_parsed_at":"2023-05-31T18:31:38.315Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.1/manifests"},{"name":"v1","sha":"89ca5895ebd99c09f8222234a0976e7ff8b823a7","kind":"commit","published_at":"2022-10-27T18:18:35.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1","dependencies_parsed_at":"2023-05-31T18:31:40.415Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1/manifests"},{"name":"v1.0","sha":"75caf00c448e0584029b54adbe430024d4d6384f","kind":"commit","published_at":"2022-10-21T14:09:42.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v1.0","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v1.0","dependencies_parsed_at":"2023-05-31T18:31:42.354Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v1.0/manifests"},{"name":"v0.1","sha":"75caf00c448e0584029b54adbe430024d4d6384f","kind":"commit","published_at":"2022-10-21T14:09:42.000Z","download_url":"https://codeload.github.com/scientific-python/issue-from-pytest-log-action/tar.gz/v0.1","html_url":"https://github.com/scientific-python/issue-from-pytest-log-action/releases/tag/v0.1","dependencies_parsed_at":"2023-05-31T18:31:49.596Z","dependency_job_id":null,"purl":"pkg:github/scientific-python/issue-from-pytest-log-action@v0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/tags/v0.1/manifests"}]},"repo_metadata_updated_at":"2026-04-18T04:07:15.770Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":27.54392500155212,"dependent_packages_count":0.0,"stargazers_count":8.312897718454137,"forks_count":9.163433183299704,"docker_downloads_count":null,"average":11.255063975826491},"purl":"pkg:githubactions/scientific-python/issue-from-pytest-log-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/scientific-python/issue-from-pytest-log-action","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/scientific-python/issue-from-pytest-log-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/scientific-python/issue-from-pytest-log-action/dependencies","status":null,"funding_links":["https://github.com/sponsors/scientific-python"],"critical":null,"issue_metadata":{"last_synced_at":"2026-02-10T20:08:17.618Z","issues_count":0,"pull_requests_count":6,"avg_time_to_close_issue":null,"avg_time_to_close_pull_request":1654.2,"issues_closed_count":0,"pull_requests_closed_count":5,"pull_request_authors_count":2,"issue_authors_count":0,"avg_comments_per_issue":null,"avg_comments_per_pull_request":0.16666666666666666,"merged_pull_requests_count":5,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":0,"past_year_pull_requests_count":6,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":1654.2,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":5,"past_year_pull_request_authors_count":2,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":0.16666666666666666,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":5,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/scientific-python%2Fissue-from-pytest-log-action/issues","maintainers":[{"login":"bsipocz","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/bsipocz"}],"active_maintainers":[{"login":"bsipocz","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/bsipocz"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/scientific-python%2Fissue-from-pytest-log-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/scientific-python%2Fissue-from-pytest-log-action/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/scientific-python%2Fissue-from-pytest-log-action/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/scientific-python%2Fissue-from-pytest-log-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/scientific-python%2Fissue-from-pytest-log-action/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/scientific-python%2Fissue-from-pytest-log-action/codemeta","maintainers":[]}