{"id":5803941,"name":"JamieMason/syncpack-github-action","ecosystem":"actions","description":"Always use the same versions of each dependency","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/JamieMason/syncpack-github-action","keywords_array":["dependencies","github-actions","lerna","monorepo","npm","pnpm","semver","versions","workspaces","yarn"],"namespace":"JamieMason","versions_count":5,"first_release_published_at":"2022-05-15T17:09:09.000Z","latest_release_published_at":"2023-09-14T09:50:21.000Z","latest_release_number":"0.2.3","last_synced_at":"2026-04-13T04:03:07.448Z","created_at":"2023-01-04T14:46:30.194Z","updated_at":"2026-04-13T04:03:07.449Z","registry_url":"https://github.com/JamieMason/syncpack-github-action","install_command":null,"documentation_url":null,"metadata":{"name":"Syncpack: Synchronise monorepo dependency versions","description":"Always use the same versions of each dependency","branding":{"icon":"cloud-lightning","color":"green"},"inputs":{"bot-email":{"description":"GitHub Email for the Syncpack Bot","required":false,"default":"github-actions@github.com"},"bot-username":{"description":"GitHub Username for the Syncpack Bot","required":false,"default":"github-actions[bot]"},"commit-message":{"description":"Commit Message to use when applying fixes","required":false,"default":"chore(syncpack): format and sync package.json files"},"format-mismatches":{"description":"\"fix\" | \"ignore\"","required":false,"default":"fix"},"lockfile-mismatches":{"description":"\"fix\" | \"ignore\"","required":false,"default":"fix"},"package-manager-version":{"description":"The Semver version of npm, yarn, or pnpm","required":false,"default":"latest"},"package-manager":{"description":"Possible values npm | yarn | pnpm","required":false,"default":"npm"},"semver-range-mismatches":{"description":"\"lint\" | \"fix\" | \"ignore\"","required":false,"default":"fix"},"syncpack-version":{"description":"The Semver version of syncpack","required":false,"default":"7.2.1"},"version-mismatches":{"description":"\"lint\" | \"fix\" | \"ignore\"","required":false,"default":"fix"}},"runs":{"using":"composite","steps":[{"name":"Init","id":"init","shell":"bash","run":"if [ \"${{ inputs.version-mismatches }}\" = \"fix\" ] || [ \"${{ inputs.format-mismatches }}\" = \"fix\" ] || [ \"${{ inputs.semver-range-mismatches }}\" = \"fix\" ]; then\n  echo \"anyFixEnabled=true\" \u003e\u003e $GITHUB_OUTPUT\nfi\n"},{"name":"Install Syncpack","id":"install-syncpack","shell":"bash","run":"npm i -g \"syncpack@${{ inputs.syncpack-version }}\"\n"},{"if":"${{ steps.init.outputs.anyFixEnabled == 'true' }}","name":"Checkout Branch","id":"checkout-branch","shell":"bash","run":"git config pull.rebase true\ngit fetch\ngit checkout $GITHUB_HEAD_REF\ngit pull origin $GITHUB_HEAD_REF\n"},{"if":"${{ inputs.version-mismatches == 'fix' }}","name":"syncpack fix-mismatches","id":"version-mismatches-fix","shell":"bash","run":"set +e\nvalue=\"$(syncpack fix-mismatches)\"\nvalue=\"${value//'%'/'%25'}\"\nvalue=\"${value//$'\\n'/'%0A'}\"\nvalue=\"${value//$'\\r'/'%0D'}\"\necho \"stdout=$value\" \u003e\u003e $GITHUB_OUTPUT\nset -e\nif [[ `git diff --name-only` ]]; then\n  git add .\n  echo \"has-changes=true\" \u003e\u003e $GITHUB_OUTPUT\nfi\n"},{"if":"${{ inputs.format-mismatches == 'fix' }}","name":"syncpack format","id":"format-mismatches-fix","shell":"bash","run":"set +e\nvalue=\"$(syncpack format)\"\nvalue=\"${value//'%'/'%25'}\"\nvalue=\"${value//$'\\n'/'%0A'}\"\nvalue=\"${value//$'\\r'/'%0D'}\"\necho \"stdout=$value\" \u003e\u003e $GITHUB_OUTPUT\nset -e\nif [[ `git diff --name-only` ]]; then\n  git add .\n  echo \"has-changes=true\" \u003e\u003e $GITHUB_OUTPUT\nfi\n"},{"if":"${{ inputs.semver-range-mismatches == 'fix' }}","name":"syncpack set-semver-ranges","id":"semver-range-mismatches-fix","shell":"bash","run":"set +e\nvalue=\"$(syncpack set-semver-ranges)\"\nvalue=\"${value//'%'/'%25'}\"\nvalue=\"${value//$'\\n'/'%0A'}\"\nvalue=\"${value//$'\\r'/'%0D'}\"\necho \"stdout=$value\" \u003e\u003e $GITHUB_OUTPUT\nset -e\nif [[ `git diff --name-only` ]]; then\n  git add .\n  echo \"has-changes=true\" \u003e\u003e $GITHUB_OUTPUT\nfi\n"},{"if":"${{ inputs.lockfile-mismatches != 'ignore' }}","name":"Update Lockfile","id":"lockfile-mismatches-fix","shell":"bash","run":"if [ \"${{ inputs.package-manager }}\" = \"yarn\" ]; then\n  npm i -g \"yarn@${{ inputs.package-manager-version }}\"\n  yarn install\nelif [ \"${{ inputs.package-manager }}\" = \"pnpm\" ]; then\n  npm i -g \"pnpm@${{ inputs.package-manager-version }}\"\n  pnpm install --no-frozen-lockfile\nelse\n  npm i -g \"npm@${{ inputs.package-manager-version }}\"\n  npm install\nfi\n"},{"if":"${{ steps.init.outputs.anyFixEnabled == 'true' }}","name":"Detect Changes","id":"detect-changes","shell":"bash","run":"if [[ `git status --porcelain` ]]; then\n  echo \"has-changes=true\" \u003e\u003e $GITHUB_OUTPUT\nfi\n"},{"if":"${{ steps.init.outputs.anyFixEnabled == 'true' }}","name":"Commit and Push","id":"commit-and-push","shell":"bash","run":"if [ \"${{ steps.detect-changes.outputs.has-changes }}\" = \"true\" ]; then\n  git add .\n  git config user.name \"${{ inputs.bot-username }}\"\n  git config user.email \"${{ inputs.bot-email }}\"\n  git commit -m \"${{ inputs.commit-message }}\"\n  git push origin HEAD:\"$GITHUB_HEAD_REF\"\n  git push\nfi\n"},{"if":"always()","name":"syncpack list-mismatches","id":"version-mismatches-lint","shell":"bash","run":"if [ \"${{ inputs.version-mismatches }}\" = \"lint\" ]; then\n  set +e\n  value=\"$(syncpack list-mismatches)\"\n  value=\"${value//'%'/'%25'}\"\n  value=\"${value//$'\\n'/'%0A'}\"\n  value=\"${value//$'\\r'/'%0D'}\"\n  echo \"stdout=$value\" \u003e\u003e $GITHUB_OUTPUT\n  set -e\n  syncpack list-mismatches\nfi\n"},{"if":"always()","name":"syncpack lint-semver-ranges","id":"semver-range-mismatches-lint","shell":"bash","run":"if [ \"${{ inputs.semver-range-mismatches }}\" = \"lint\" ]; then\n  set +e\n  value=\"$(syncpack lint-semver-ranges)\"\n  value=\"${value//'%'/'%25'}\"\n  value=\"${value//$'\\n'/'%0A'}\"\n  value=\"${value//$'\\r'/'%0D'}\"\n  echo \"stdout=$value\" \u003e\u003e $GITHUB_OUTPUT\n  set -e\n  syncpack lint-semver-ranges\nfi\n"},{"if":"always()","name":"Get Comment Body","id":"get-comment-body","shell":"bash","run":"touch comment.txt\nif [ \"${{ inputs.version-mismatches }}\" = \"lint\" ]; then\n  if [ \"${{ steps.version-mismatches-lint.outcome }}\" = \"success\" ]; then\n    echo '```' \u003e\u003e comment.txt\n    echo \"$ syncpack list-mismatches\" \u003e\u003e comment.txt\n    echo \"✓\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"\" \u003e\u003e comment.txt\n  fi\n  if [ \"${{ steps.version-mismatches-lint.outcome }}\" = \"failure\" ]; then\n    echo \"\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"$ syncpack list-mismatches\" \u003e\u003e comment.txt\n    echo \"${{ steps.version-mismatches-lint.outputs.stdout }}\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"\" \u003e\u003e comment.txt\n  fi\nfi\nif [ \"${{ inputs.semver-range-mismatches }}\" = \"lint\" ]; then\n  if [ \"${{ steps.semver-range-mismatches-lint.outcome }}\" = \"success\" ]; then\n    echo '```' \u003e\u003e comment.txt\n    echo \"$ syncpack lint-semver-ranges\" \u003e\u003e comment.txt\n    echo \"✓\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"\" \u003e\u003e comment.txt\n  fi\n  if [ \"${{ steps.semver-range-mismatches-lint.outcome }}\" = \"failure\" ]; then\n    echo \"\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"$ syncpack lint-semver-ranges\" \u003e\u003e comment.txt\n    echo \"${{ steps.semver-range-mismatches-lint.outputs.stdout }}\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"\" \u003e\u003e comment.txt\n  fi\nfi\nif [ \"${{ inputs.version-mismatches }}\" = \"fix\" ]; then\n  if [ \"${{ steps.version-mismatches-fix.outputs.has-changes }}\" = \"true\" ]; then\n    echo \"\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"$ syncpack fix-mismatches\" \u003e\u003e comment.txt\n    echo \"${{ steps.version-mismatches-fix.outputs.stdout }}\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"\" \u003e\u003e comment.txt\n  fi\nfi\nif [ \"${{ inputs.format-mismatches }}\" = \"fix\" ]; then\n  if [ \"${{ steps.format-mismatches-fix.outputs.has-changes }}\" = \"true\" ]; then\n    echo \"\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"$ syncpack format\" \u003e\u003e comment.txt\n    echo \"${{ steps.format-mismatches-fix.outputs.stdout }}\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"\" \u003e\u003e comment.txt\n  fi\nfi\nif [ \"${{ inputs.semver-range-mismatches }}\" = \"fix\" ]; then\n  if [ \"${{ steps.semver-range-mismatches-fix.outputs.has-changes }}\" = \"true\" ]; then\n    echo \"\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"$ syncpack set-semver-ranges\" \u003e\u003e comment.txt\n    echo \"${{ steps.semver-range-mismatches-fix.outputs.stdout }}\" \u003e\u003e comment.txt\n    echo '```' \u003e\u003e comment.txt\n    echo \"\" \u003e\u003e comment.txt\n  fi\nfi\nbody=$(cat comment.txt)\nbody=\"${body//'%'/'%25'}\"\nbody=\"${body//$'\\n'/'%0A'}\"\nbody=\"${body//$'\\r'/'%0D'}\"\necho \"body=\"$body\"\" \u003e\u003e $GITHUB_OUTPUT\n"},{"if":"always()","name":"Find Comment","id":"find-comment","uses":"peter-evans/find-comment@v2","with":{"issue-number":"${{ github.event.pull_request.number }}","comment-author":"${{ inputs.bot-username }}","body-includes":"\u003c!-- syncpack-bot --\u003e"}},{"if":"always()","name":"Upsert Comment","id":"upsert-comment","uses":"peter-evans/create-or-update-comment@v2","with":{"comment-id":"${{ steps.find-comment.outputs.comment-id }}","issue-number":"${{ github.event.pull_request.number }}","edit-mode":"replace","body":"Synchronise monorepo dependency versions with [`syncpack`](https://github.com/JamieMason/syncpack)\n${{ steps.get-comment-body.outputs.body }}\n\u003c!-- syncpack-bot --\u003e\n"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":39533421,"uuid":"492546015","full_name":"JamieMason/syncpack-github-action","owner":"JamieMason","description":"A GitHub Action to synchronise monorepo dependency versions with syncpack.","archived":false,"fork":false,"pushed_at":"2023-09-14T09:50:35.000Z","size":9,"stargazers_count":14,"open_issues_count":5,"forks_count":6,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-08-22T11:26:31.630Z","etag":null,"topics":["dependencies","github-actions","lerna","monorepo","npm","pnpm","semver","versions","workspaces","yarn"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JamieMason.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"JamieMason"}},"created_at":"2022-05-15T16:46:02.000Z","updated_at":"2025-03-31T02:08:03.000Z","dependencies_parsed_at":"2024-06-21T14:17:24.245Z","dependency_job_id":"11ca4dd4-148f-4ab6-9b41-8caa4fb2110a","html_url":"https://github.com/JamieMason/syncpack-github-action","commit_stats":{"total_commits":7,"total_committers":4,"mean_commits":1.75,"dds":0.5714285714285714,"last_synced_commit":"ef06019082d0dfe291b49c9858fd25fd121207d4"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/JamieMason/syncpack-github-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JamieMason","download_url":"https://codeload.github.com/JamieMason/syncpack-github-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/sbom","scorecard":{"id":70621,"data":{"date":"2025-08-11","repo":{"name":"github.com/JamieMason/syncpack-github-action","commit":"969e5c870c5b0a86d4ab0a6446a2a64b2f046294"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":3.6,"checks":[{"name":"Maintained","score":0,"reason":"0 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/example.yml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"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":"Code-Review","score":2,"reason":"Found 2/9 approved changesets -- score normalized to 2","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"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/example.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/JamieMason/syncpack-github-action/example.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/example.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/JamieMason/syncpack-github-action/example.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/example.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/JamieMason/syncpack-github-action/example.yml/main?enable=pin","Info:   0 out of   2 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   1 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"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":"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":"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":0,"reason":"branch protection not enabled on development/release branches","details":["Warn: branch protection not enabled for branch 'main'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 2 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-15T03:45:24.814Z","repository_id":39533421,"created_at":"2025-08-15T03:45:24.814Z","updated_at":"2025-08-15T03:45:24.814Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271697477,"owners_count":24805119,"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-08-22T02:00:08.480Z","response_time":65,"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":"JamieMason","name":"Jamie Mason","uuid":"320492","kind":"user","description":"Contract Frontend Developer at Monzo. Previously: Sky Sports, Sky Bet, William Hill, Shell, Betfair, Premier League.","email":"","website":null,"location":"Leeds, United Kingdom","twitter":"fold_left","company":null,"icon_url":"https://avatars.githubusercontent.com/u/320492?v=4","repositories_count":69,"last_synced_at":"2025-08-18T07:47:58.757Z","metadata":{"has_sponsors_listing":true},"html_url":"https://github.com/JamieMason","funding_links":["https://github.com/sponsors/JamieMason"],"total_stars":7591,"followers":460,"following":897,"created_at":"2022-11-02T16:40:53.725Z","updated_at":"2025-08-18T07:47:58.758Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JamieMason","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JamieMason/repositories"},"tags":[{"name":"0.2.3","sha":"969e5c870c5b0a86d4ab0a6446a2a64b2f046294","kind":"commit","published_at":"2023-09-14T09:50:21.000Z","download_url":"https://codeload.github.com/JamieMason/syncpack-github-action/tar.gz/0.2.3","html_url":"https://github.com/JamieMason/syncpack-github-action/releases/tag/0.2.3","dependencies_parsed_at":"2023-09-17T07:51:18.496Z","dependency_job_id":null,"purl":"pkg:github/JamieMason/syncpack-github-action@0.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.2.3/manifests"},{"name":"0.2.2","sha":"c145cec44b3731b3fe8e859679e240d6ae011f0f","kind":"commit","published_at":"2022-09-16T08:35:56.000Z","download_url":"https://codeload.github.com/JamieMason/syncpack-github-action/tar.gz/0.2.2","html_url":"https://github.com/JamieMason/syncpack-github-action/releases/tag/0.2.2","dependencies_parsed_at":"2023-06-01T10:48:31.289Z","dependency_job_id":null,"purl":"pkg:github/JamieMason/syncpack-github-action@0.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.2.2/manifests"},{"name":"0.2.1","sha":"a03d1635d1b5cc9bc2c4e77e29a070d9c948ab8a","kind":"commit","published_at":"2022-07-18T11:57:38.000Z","download_url":"https://codeload.github.com/JamieMason/syncpack-github-action/tar.gz/0.2.1","html_url":"https://github.com/JamieMason/syncpack-github-action/releases/tag/0.2.1","dependencies_parsed_at":"2023-05-31T10:57:10.233Z","dependency_job_id":null,"purl":"pkg:github/JamieMason/syncpack-github-action@0.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.2.1/manifests"},{"name":"0.2.0","sha":"5f13d3bb1ee592f2692bff53632678908d6adb98","kind":"commit","published_at":"2022-05-19T22:36:53.000Z","download_url":"https://codeload.github.com/JamieMason/syncpack-github-action/tar.gz/0.2.0","html_url":"https://github.com/JamieMason/syncpack-github-action/releases/tag/0.2.0","dependencies_parsed_at":"2023-05-31T10:57:10.651Z","dependency_job_id":null,"purl":"pkg:github/JamieMason/syncpack-github-action@0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.2.0/manifests"},{"name":"0.1.0","sha":"673d8352c1a198603c4d184b1c9207d267cdc1d7","kind":"commit","published_at":"2022-05-15T17:09:09.000Z","download_url":"https://codeload.github.com/JamieMason/syncpack-github-action/tar.gz/0.1.0","html_url":"https://github.com/JamieMason/syncpack-github-action/releases/tag/0.1.0","dependencies_parsed_at":"2023-05-31T10:57:11.066Z","dependency_job_id":null,"purl":"pkg:github/JamieMason/syncpack-github-action@0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/tags/0.1.0/manifests"}]},"repo_metadata_updated_at":"2025-08-22T20:42:46.755Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":3,"rankings":{"downloads":null,"dependent_repos_count":18.05102202503565,"dependent_packages_count":0.0,"stargazers_count":10.80019014419268,"forks_count":8.29662494057994,"docker_downloads_count":null,"average":9.286959277452068},"purl":"pkg:githubactions/JamieMason/syncpack-github-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/JamieMason/syncpack-github-action","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/JamieMason/syncpack-github-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/JamieMason/syncpack-github-action/dependencies","status":null,"funding_links":["https://github.com/sponsors/JamieMason"],"critical":null,"issue_metadata":{"last_synced_at":"2025-05-07T01:45:41.407Z","issues_count":5,"pull_requests_count":3,"avg_time_to_close_issue":3005382.0,"avg_time_to_close_pull_request":1511846.6666666667,"issues_closed_count":1,"pull_requests_closed_count":3,"pull_request_authors_count":3,"issue_authors_count":4,"avg_comments_per_issue":1.6,"avg_comments_per_pull_request":2.3333333333333335,"merged_pull_requests_count":2,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":0,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":null,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":0,"past_year_pull_request_authors_count":0,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":null,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":0,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/JamieMason%2Fsyncpack-github-action/issues","maintainers":[],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/JamieMason%2Fsyncpack-github-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/JamieMason%2Fsyncpack-github-action/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/JamieMason%2Fsyncpack-github-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/JamieMason%2Fsyncpack-github-action/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/JamieMason%2Fsyncpack-github-action/codemeta","maintainers":[]}