{"id":5799823,"name":"dev-hato/actions-diff-pr-management","ecosystem":"actions","description":"PRのブランチに対して、フォーマッタを実行した結果をPRにするGitHub Actionsです。","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/dev-hato/actions-diff-pr-management","keywords_array":["github"],"namespace":"dev-hato","versions_count":47,"first_release_published_at":"2022-07-02T23:43:07.000Z","latest_release_published_at":"2026-02-05T11:11:08.000Z","latest_release_number":"v2.2.4","last_synced_at":"2026-05-04T02:50:24.569Z","created_at":"2023-01-04T11:36:48.647Z","updated_at":"2026-05-04T02:50:24.570Z","registry_url":"https://github.com/dev-hato/actions-diff-pr-management","install_command":null,"documentation_url":null,"metadata":{"name":"diff-pr-management","author":"dev-hato Development Team","description":"PRのブランチに対して、フォーマッタを実行した結果をPRにするGitHub Actionsです。","inputs":{"github-token":{"description":"GitHubのトークン。","required":true},"branch-name-prefix":{"description":"branch名の接頭語。","required":false,"default":"fix"},"pr-title-prefix":{"description":"PRのタイトルの接頭語。","required":false,"default":"fix"},"pr-description-prefix":{"description":"本文の接頭語。","required":false,"default":""},"pr-labels":{"description":"PRに付与するラベル。カンマ区切りで指定する。","required":false,"default":""},"exit-failure":{"description":"実行完了時にCIを失敗させるかどうか。","required":false,"default":"true"},"working-directory":{"description":"実行対象のディレクトリ","required":false,"default":""},"no-verify":{"description":"`git commit`, `git push` 時のフックを無効化する","required":false,"default":"false"}},"runs":{"using":"composite","steps":[{"name":"Detect diff","id":"diff","shell":"bash","if":"github.event_name != 'pull_request' || github.event.action != 'closed'","working-directory":"${{inputs.working-directory}}","run":"${{ github.action_path }}/src/detect_diff.sh"},{"name":"Set env","id":"set-env","shell":"bash","env":{"HEAD_REF":"${{github.event.pull_request.head.ref || github.ref_name}}","PR_DESCRIPTION_PREFIX_VALUE":"${{inputs.pr-description-prefix}}","PR_NUMBER":"${{github.event.pull_request.number}}","PR_TITLE_PREFIX":"${{inputs.pr-title-prefix}}","PR_LABELS":"${{inputs.pr-labels}}","BRANCH_NAME_PREFIX":"${{inputs.branch-name-prefix}}"},"run":"echo \"HEAD_REF=${HEAD_REF}\" \u003e\u003e\"${GITHUB_ENV}\"\n\ndelimiter=\"$(openssl rand -hex 8)\"\necho \"PR_DESCRIPTION_PREFIX\u003c\u003c${delimiter}\" \u003e\u003e \"$GITHUB_ENV\"\necho \"${PR_DESCRIPTION_PREFIX_VALUE}\" \u003e\u003e \"$GITHUB_ENV\"\necho \"${delimiter}\" \u003e\u003e \"$GITHUB_ENV\"\n\necho \"PR_NUMBER=${PR_NUMBER}\" \u003e\u003e \"$GITHUB_ENV\"\necho \"PR_TITLE_PREFIX=${PR_TITLE_PREFIX}\" \u003e\u003e \"$GITHUB_ENV\"\necho \"PR_LABELS=${PR_LABELS}\" \u003e\u003e \"$GITHUB_ENV\"\necho \"BRANCH_NAME_PREFIX=${BRANCH_NAME_PREFIX}\" \u003e\u003e \"$GITHUB_ENV\"\n"},{"name":"Push","env":{"TOKEN":"${{inputs.github-token}}","NO_VERIFY":"${{inputs.no-verify}}"},"if":"steps.diff.outputs.result != '' \u0026\u0026 ((github.event_name == 'pull_request' \u0026\u0026 github.event.action != 'closed') || github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch')","working-directory":"${{inputs.working-directory}}","run":"${{ github.action_path }}/src/push.sh","shell":"bash"},{"name":"Get a number of PullRequests","uses":"actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd","if":"steps.diff.outputs.result != '' \u0026\u0026 ((github.event_name == 'pull_request' \u0026\u0026 github.event.action != 'closed') || github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch')","id":"get_number_of_pull_requests","with":{"github-token":"${{inputs.github-token}}","script":"const {script} = require('${{ github.action_path }}/dist/get_number_of_pull_requests.js')\nreturn await script(github, context)\n"}},{"name":"Create PullRequest","uses":"actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd","if":"steps.diff.outputs.result != '' \u0026\u0026 steps.get_number_of_pull_requests.outputs.result == 0 \u0026\u0026 ((github.event_name == 'pull_request' \u0026\u0026 github.event.action != 'closed') || github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch')","id":"create_pull_request","with":{"github-token":"${{inputs.github-token}}","script":"const {script} = require('${{ github.action_path }}/dist/create_pull_request.js')\nreturn await script(github, context)\n"}},{"name":"Assign a user","uses":"actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd","if":"steps.diff.outputs.result != '' \u0026\u0026 steps.get_number_of_pull_requests.outputs.result == 0 \u0026\u0026 github.event_name == 'pull_request' \u0026\u0026 github.event.action != 'closed' \u0026\u0026 github.event.pull_request.user.login != 'dependabot[bot]' \u0026\u0026 github.event.pull_request.user.login != 'renovate[bot]' \u0026\u0026 github.event.pull_request.user.login != 'Copilot'","env":{"PR_NUMBER":"${{steps.create_pull_request.outputs.result}}"},"with":{"github-token":"${{inputs.github-token}}","script":"const {script} = require('${{ github.action_path }}/dist/assign_a_user.js')\nawait script(github, context)\n"}},{"name":"Update PullRequest","uses":"actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd","if":"steps.diff.outputs.result != '' \u0026\u0026 ((github.event_name == 'pull_request' \u0026\u0026 github.event.action != 'closed') || github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch')","id":"update_pull_request","with":{"github-token":"${{inputs.github-token}}","script":"const {script} = require('${{ github.action_path }}/dist/update_pull_request.js')\nreturn await script(github, context)\n"}},{"name":"Close PullRequest","uses":"actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd","if":"(github.event_name == 'pull_request' \u0026\u0026 (github.event.action == 'closed' || steps.diff.outputs.result == '')) || ((github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch') \u0026\u0026 steps.diff.outputs.result == '')","with":{"github-token":"${{inputs.github-token}}","script":"const {script} = require('${{ github.action_path }}/dist/close_pull_request.js')\nawait script(github, context)\n"}},{"name":"Exit","if":"(github.event_name != 'pull_request' || github.event.action != 'closed') \u0026\u0026 steps.diff.outputs.result != '' \u0026\u0026 inputs.exit-failure == 'true'","run":"exit 1","shell":"bash"}]},"default_branch":"main","path":null},"repo_metadata":{"id":41257416,"uuid":"350720117","full_name":"dev-hato/actions-diff-pr-management","owner":"dev-hato","description":"PRのブランチに対して、フォーマッタを実行した結果をPRにするGitHub Actionsです。","archived":false,"fork":false,"pushed_at":"2025-10-24T02:23:50.000Z","size":3252,"stargazers_count":6,"open_issues_count":3,"forks_count":3,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-24T04:25:03.732Z","etag":null,"topics":["github"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/dev-hato.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-03-23T13:19:26.000Z","updated_at":"2025-10-24T02:23:53.000Z","dependencies_parsed_at":"2023-01-04T12:39:16.082Z","dependency_job_id":"9b08ab00-c55b-494a-b46d-30062dbac9ee","html_url":"https://github.com/dev-hato/actions-diff-pr-management","commit_stats":{"total_commits":782,"total_committers":8,"mean_commits":97.75,"dds":0.09079283887468026,"last_synced_commit":"a3f9e3347c9a09f27bfe2efd3079af49dca1a064"},"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dev-hato","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/sbom","scorecard":{"id":142661,"data":{"date":"2025-08-11","repo":{"name":"github.com/dev-hato/actions-diff-pr-management","commit":"f9bbfbbf2f4839b34ca319f45cbad4274a3bf4c3"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":7.1,"checks":[{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Maintained","score":10,"reason":"30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Code-Review","score":10,"reason":"all changesets reviewed","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":"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":["Info: topLevel permissions set to 'read-all': .github/workflows/add-to-task-list.yml:10","Warn: topLevel 'security-events' permission set to 'write': .github/workflows/codeql.yml:23","Info: topLevel 'actions' permission set to 'read': .github/workflows/codeql.yml:21","Info: topLevel 'contents' permission set to 'read': .github/workflows/codeql.yml:22","Warn: topLevel 'contents' permission set to 'write': .github/workflows/format-json-yml.yml:14","Warn: topLevel 'contents' permission set to 'write': .github/workflows/format.yml:14","Info: topLevel permissions set to 'read-all': .github/workflows/github-actions-cache-cleaner.yml:10","Info: topLevel 'contents' permission set to 'read': .github/workflows/super-linter.yml:22","Info: topLevel 'packages' permission set to 'read': .github/workflows/super-linter.yml:23","Warn: topLevel 'statuses' permission set to 'write': .github/workflows/super-linter.yml:24","Warn: topLevel 'contents' permission set to 'write': .github/workflows/update-gitleaks.yml:14","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":"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":"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":"Pinned-Dependencies","score":8,"reason":"dependency not pinned by hash detected -- score normalized to 8","details":["Warn: npmCommand not pinned by hash: .github/workflows/format.yml:32","Info:  14 out of  14 GitHub-owned GitHubAction dependencies pinned","Info:   5 out of   5 third-party GitHubAction dependencies pinned","Info:   1 out of   2 npmCommand 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":"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":"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":"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":"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":"SAST","score":10,"reason":"SAST tool is run on all commits","details":["Info: SAST configuration detected: CodeQL","Info: all commits (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"}},{"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"}}]},"last_synced_at":"2025-08-16T08:32:28.475Z","repository_id":41257416,"created_at":"2025-08-16T08:32:28.475Z","updated_at":"2025-08-16T08:32:28.475Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281139028,"owners_count":26450137,"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-10-26T02:00:06.575Z","response_time":61,"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":"dev-hato","name":"dev-hato","uuid":"68012105","kind":"organization","description":null,"email":null,"website":null,"location":null,"twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/68012105?v=4","repositories_count":15,"last_synced_at":"2023-03-04T00:53:36.049Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/dev-hato","funding_links":[],"total_stars":null,"followers":null,"following":null,"created_at":"2022-11-14T07:19:07.503Z","updated_at":"2023-03-04T00:53:36.063Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dev-hato","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dev-hato/repositories"},"tags":[{"name":"v2.2.1","sha":"bda458eb55c11585595482e3ec7506b05632b5ec","kind":"commit","published_at":"2025-09-26T08:23:56.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v2.2.1","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v2.2.1","dependencies_parsed_at":null,"dependency_job_id":"436d9df8-3942-4b2a-8e7e-efd19480a2eb","purl":"pkg:github/dev-hato/actions-diff-pr-management@v2.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.2.1/manifests"},{"name":"v2.2.0","sha":"ac4f08dda423d2793a7acdd58c831ed5a0f19136","kind":"commit","published_at":"2025-09-18T22:59:15.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v2.2.0","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v2.2.0","dependencies_parsed_at":"2025-09-22T06:11:33.055Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.2.0/manifests"},{"name":"v2.1.1","sha":"b3530e809a1948d0187f47a67d4164a47e03d7ec","kind":"commit","published_at":"2025-05-20T21:55:53.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v2.1.1","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v2.1.1","dependencies_parsed_at":"2025-05-24T06:16:13.705Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v2.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.1.1/manifests"},{"name":"v2.1.0","sha":"cea263ca46759ebc8c812b8595be4df129761037","kind":"commit","published_at":"2025-02-18T17:36:38.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v2.1.0","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v2.1.0","dependencies_parsed_at":null,"dependency_job_id":"cf6ed36f-06be-4b47-921b-f6a1414cfcaa","purl":"pkg:github/dev-hato/actions-diff-pr-management@v2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.1.0/manifests"},{"name":"v2.0.0","sha":"cc201e3df74a342983025c4e97b7216b4e77f9f1","kind":"commit","published_at":"2025-01-05T00:11:56.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v2.0.0","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v2.0.0","dependencies_parsed_at":"2025-01-06T08:21:16.373Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2.0.0/manifests"},{"name":"v2","sha":"cc201e3df74a342983025c4e97b7216b4e77f9f1","kind":"commit","published_at":"2025-01-05T00:11:56.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v2","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v2","dependencies_parsed_at":"2025-01-06T08:21:16.698Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v2/manifests"},{"name":"v1","sha":"8d475e5bc78f61c40024d4859b79134b66f788d2","kind":"commit","published_at":"2024-10-24T12:29:37.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1","dependencies_parsed_at":"2024-11-11T07:41:22.031Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1/manifests"},{"name":"v1.2.1","sha":"8d475e5bc78f61c40024d4859b79134b66f788d2","kind":"commit","published_at":"2024-10-24T12:29:37.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.2.1","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.2.1","dependencies_parsed_at":"2024-10-30T04:21:37.668Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.2.1/manifests"},{"name":"v1.2.0","sha":"e5c78b251a69f44f93b2f1398e06b129bcf151ec","kind":"commit","published_at":"2024-10-11T13:54:01.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.2.0","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.2.0","dependencies_parsed_at":"2024-10-13T06:14:05.993Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.2.0/manifests"},{"name":"v1.1.13","sha":"7cc8ab103917849f6995064afae9f4cbcfd009ae","kind":"commit","published_at":"2024-09-12T22:18:57.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.13","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.13","dependencies_parsed_at":"2024-09-15T08:42:58.502Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.13/manifests"},{"name":"v1.1.12","sha":"128afc4203b4e391e03868be91c987b2ddba7ea5","kind":"commit","published_at":"2024-02-10T11:22:10.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.12","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.12","dependencies_parsed_at":"2024-02-12T06:49:46.772Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.12/manifests"},{"name":"v1.1.11","sha":"3820dae649100bdf6bc724d449645f0596bf42dd","kind":"commit","published_at":"2024-02-10T07:59:48.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.11","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.11","dependencies_parsed_at":"2024-02-12T06:49:45.896Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.11/manifests"},{"name":"v1.1.10","sha":"d1c4afbe0fc69d32dcc0ab2efdeea1af38b005d4","kind":"commit","published_at":"2024-02-04T01:54:32.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.10","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.10","dependencies_parsed_at":"2024-02-06T05:55:09.002Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.10/manifests"},{"name":"v1.1.9","sha":"5679ec25fa1bcedddc567859b30193a724bc968e","kind":"commit","published_at":"2024-01-20T07:41:32.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.9","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.9","dependencies_parsed_at":"2024-01-23T05:01:12.817Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.9/manifests"},{"name":"v1.1.8","sha":"40e65038ab238f87b7b71c40f4d54d0d50760047","kind":"commit","published_at":"2024-01-13T18:35:22.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.8","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.8","dependencies_parsed_at":"2024-01-19T18:16:54.689Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.8/manifests"},{"name":"v1.1.7","sha":"8a65534aa8495a0a2b3320194f720a64029367a3","kind":"commit","published_at":"2023-12-19T06:50:25.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.7","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.7","dependencies_parsed_at":"2023-12-22T05:05:56.674Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.7/manifests"},{"name":"v1.1.6","sha":"ae42a36d1dc0bb5b4f808b7b9e297321889c48d8","kind":"commit","published_at":"2023-06-24T11:40:52.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.6","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.6","dependencies_parsed_at":"2023-07-20T14:09:17.672Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.6/manifests"},{"name":"v1.1.5","sha":"b835e835fe1eb88f9e8e9ae8cf0a074b55ac8342","kind":"commit","published_at":"2023-06-24T00:37:15.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.5","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.5","dependencies_parsed_at":"2023-07-20T14:09:16.946Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.5/manifests"},{"name":"v1.1.4","sha":"93e9a5fd192f48d0ca304f4fca36097f894c288d","kind":"commit","published_at":"2023-06-09T06:02:08.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.4","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.4","dependencies_parsed_at":"2023-07-20T14:09:16.994Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.4/manifests"},{"name":"v1.1.3","sha":"5a1db4a2aa762769a8e32917b8bdd459c2ca58b1","kind":"commit","published_at":"2023-02-27T11:17:03.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.3","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.3","dependencies_parsed_at":"2023-07-20T14:09:18.099Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.3/manifests"},{"name":"v1.1.2","sha":"aa2b9c49a7b52a6810bbac44bcb49bbe547fa5ea","kind":"commit","published_at":"2023-01-17T12:08:17.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.2","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.2","dependencies_parsed_at":"2023-07-20T14:09:22.092Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.2/manifests"},{"name":"v1.1.1","sha":"82ad76c455e31aabc75ef0915ff12ddb300c0bad","kind":"commit","published_at":"2022-11-27T00:21:13.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.1","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.1","dependencies_parsed_at":"2023-07-20T14:09:19.329Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.1/manifests"},{"name":"v1.1.0","sha":"57d80925e166e37ff293e2c366949b29cab0cdca","kind":"commit","published_at":"2022-11-26T11:27:32.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.1.0","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.1.0","dependencies_parsed_at":"2023-07-20T14:09:17.674Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.1.0/manifests"},{"name":"v1.0.9","sha":"de758c1dcd7d19c042cfc9ff0bcadc916a19814b","kind":"commit","published_at":"2022-11-19T14:41:04.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.9","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.9","dependencies_parsed_at":"2023-07-20T14:09:18.093Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.9/manifests"},{"name":"v1.0.8","sha":"3ec762403c19df7feb72aa45101d370e8fea5cf8","kind":"commit","published_at":"2022-10-30T05:45:33.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.8","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.8","dependencies_parsed_at":"2023-07-20T14:09:21.941Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.8/manifests"},{"name":"v1.0.7","sha":"573e34148ef68559abb0834b695d21192b05110a","kind":"commit","published_at":"2022-10-20T11:41:17.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.7","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.7","dependencies_parsed_at":"2023-07-20T14:09:19.545Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.7/manifests"},{"name":"v1.0.6","sha":"b5a10555bb6653530584857d393d59f5d4dffd80","kind":"commit","published_at":"2022-10-14T22:37:14.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.6","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.6","dependencies_parsed_at":"2023-07-20T14:09:19.945Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.6/manifests"},{"name":"v1.0.5","sha":"871303a0e3bce5f0a0a573e1b95f00f0767e1234","kind":"commit","published_at":"2022-10-07T00:56:24.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.5","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.5","dependencies_parsed_at":"2023-07-20T14:09:17.764Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.5/manifests"},{"name":"v1.0.4","sha":"64a1887900a725b7098f1aa3b9be64e294808c2e","kind":"commit","published_at":"2022-09-15T10:07:01.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.4","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.4","dependencies_parsed_at":"2023-07-20T14:09:17.763Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.4/manifests"},{"name":"v1.0.3","sha":"31c1a88f8e06e43f104780868627718640ea1f8d","kind":"commit","published_at":"2022-08-05T12:36:11.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.3","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.3","dependencies_parsed_at":"2023-07-20T14:09:21.911Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.3/manifests"},{"name":"v1.0.2","sha":"2c2556d7f7b2e20cd6c86deee0dbe0efcb624635","kind":"commit","published_at":"2022-08-04T23:10:38.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.2","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.2","dependencies_parsed_at":"2023-07-20T14:09:21.025Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.2/manifests"},{"name":"v1.0.1","sha":"232dbcdba216f71fec7a6a91fd6772fd2ca194af","kind":"commit","published_at":"2022-08-02T10:34:48.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.1","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.1","dependencies_parsed_at":"2023-07-20T14:09:18.130Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.1/manifests"},{"name":"v1.0.0","sha":"f1c74cd31cc93390e836762742f73b3da5330b4a","kind":"commit","published_at":"2022-07-29T13:29:39.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v1.0.0","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v1.0.0","dependencies_parsed_at":"2023-07-20T14:09:18.105Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v1.0.0/manifests"},{"name":"v0.0.11","sha":"4e6447f1019e38f40bbf904ffb0e25780c16aa84","kind":"commit","published_at":"2022-07-29T11:24:52.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.11","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.11","dependencies_parsed_at":"2023-07-20T14:09:19.163Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.11/manifests"},{"name":"v0.0.10","sha":"47aeacef79f41b8227fb214a3aa25634bd958f1d","kind":"commit","published_at":"2022-07-17T11:35:04.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.10","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.10","dependencies_parsed_at":"2023-07-20T14:09:18.940Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.10/manifests"},{"name":"v0.0.9","sha":"61b78760b8bcfad6c6c7551497b0fa4bb4777e9b","kind":"commit","published_at":"2022-07-17T07:34:15.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.9","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.9","dependencies_parsed_at":"2023-07-20T14:09:17.878Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.9/manifests"},{"name":"v0.0.8","sha":"e99eefb916c5227a840ed26f9510d5dc3e91453c","kind":"commit","published_at":"2022-07-04T02:21:37.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.8","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.8","dependencies_parsed_at":"2023-07-20T14:09:19.787Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.8/manifests"},{"name":"v0.0.7","sha":"7bb6e7abc154fa2ac992ecff62cede40932ca850","kind":"commit","published_at":"2022-07-03T23:40:12.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.7","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.7","dependencies_parsed_at":"2023-07-20T14:09:17.938Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.7/manifests"},{"name":"v0.0.6","sha":"5713391972d1df651be5e8d5ab7188f5bc792186","kind":"commit","published_at":"2022-07-03T17:40:06.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.6","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.6","dependencies_parsed_at":"2023-07-20T14:09:21.474Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.6/manifests"},{"name":"v0.0.5","sha":"a7cfa3d3d3fd7cdfd20b7b72197c4b4effb04bac","kind":"commit","published_at":"2022-07-03T15:07:53.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.5","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.5","dependencies_parsed_at":"2023-07-20T14:09:18.599Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.5/manifests"},{"name":"v0.0.4","sha":"cc7b4894be110346487fe2b3a72aacb3f1a37d5c","kind":"commit","published_at":"2022-07-03T09:42:48.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.4","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.4","dependencies_parsed_at":"2023-07-20T14:09:21.827Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.4/manifests"},{"name":"v0.0.3","sha":"174d262cb5283f281f8f94d23d9f65af311ddc53","kind":"commit","published_at":"2022-07-03T00:55:28.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.3","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.3","dependencies_parsed_at":"2023-07-20T14:09:17.668Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.3/manifests"},{"name":"v0.0.2","sha":"1fbb8d09fea328d5c6d2be3f6412f9221c7ebb8f","kind":"commit","published_at":"2022-07-03T00:09:05.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.2","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.2","dependencies_parsed_at":"2023-07-20T14:09:19.665Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.2/manifests"},{"name":"v0.0.1","sha":"9289154f25e9e13525ccf554ad66bc12db489390","kind":"commit","published_at":"2022-07-02T23:43:07.000Z","download_url":"https://codeload.github.com/dev-hato/actions-diff-pr-management/tar.gz/v0.0.1","html_url":"https://github.com/dev-hato/actions-diff-pr-management/releases/tag/v0.0.1","dependencies_parsed_at":"2023-07-20T14:09:18.080Z","dependency_job_id":null,"purl":"pkg:github/dev-hato/actions-diff-pr-management@v0.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/tags/v0.0.1/manifests"}]},"repo_metadata_updated_at":"2026-02-11T14:55:26.160Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":10,"rankings":{"downloads":null,"dependent_repos_count":12.191411820630645,"dependent_packages_count":0.0,"stargazers_count":34.88195214704484,"forks_count":13.072413246712088,"docker_downloads_count":null,"average":15.036444303596895},"purl":"pkg:githubactions/dev-hato/actions-diff-pr-management","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/dev-hato/actions-diff-pr-management","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/dev-hato/actions-diff-pr-management","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/dev-hato/actions-diff-pr-management/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-10-23T23:03:46.763Z","issues_count":13,"pull_requests_count":1272,"avg_time_to_close_issue":5656.571428571428,"avg_time_to_close_pull_request":39123.16735366859,"issues_closed_count":7,"pull_requests_closed_count":1213,"pull_request_authors_count":5,"issue_authors_count":4,"avg_comments_per_issue":0.0,"avg_comments_per_pull_request":0.019654088050314465,"merged_pull_requests_count":1062,"bot_issues_count":9,"bot_pull_requests_count":1138,"past_year_issues_count":7,"past_year_pull_requests_count":449,"past_year_avg_time_to_close_issue":130.75,"past_year_avg_time_to_close_pull_request":75685.73774509804,"past_year_issues_closed_count":4,"past_year_pull_requests_closed_count":408,"past_year_pull_request_authors_count":5,"past_year_issue_authors_count":2,"past_year_avg_comments_per_issue":0.0,"past_year_avg_comments_per_pull_request":0.022271714922048998,"past_year_bot_issues_count":6,"past_year_bot_pull_requests_count":406,"past_year_merged_pull_requests_count":371,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-hato%2Factions-diff-pr-management/issues","maintainers":[{"login":"massongit","count":129,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/massongit"},{"login":"Goryudyuma","count":9,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Goryudyuma"}],"active_maintainers":[{"login":"massongit","count":37,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/massongit"},{"login":"Goryudyuma","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Goryudyuma"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/dev-hato%2Factions-diff-pr-management/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/dev-hato%2Factions-diff-pr-management/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/dev-hato%2Factions-diff-pr-management/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/dev-hato%2Factions-diff-pr-management/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/dev-hato%2Factions-diff-pr-management/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/dev-hato%2Factions-diff-pr-management/codemeta","maintainers":[]}