{"id":5804432,"name":"cloudposse/github-action-auto-format","ecosystem":"actions","description":"Run auto-formatting functionality for different aspects of a repo. (See scripts for details.)","homepage":"https://cloudposse.com/accelerate","licenses":null,"normalized_licenses":[],"repository_url":"https://github.com/cloudposse/github-action-auto-format","keywords_array":[],"namespace":"cloudposse","versions_count":16,"first_release_published_at":"2022-06-03T20:56:39.000Z","latest_release_published_at":"2023-05-15T15:49:48.000Z","latest_release_number":"0.15.0","last_synced_at":"2026-04-01T00:07:22.749Z","created_at":"2023-01-04T15:02:13.427Z","updated_at":"2026-04-01T00:07:22.749Z","registry_url":"https://github.com/cloudposse/github-action-auto-format","install_command":null,"documentation_url":null,"metadata":{"name":"github-action-auto-format","description":"Run auto-formatting functionality for different aspects of a repo. (See scripts for details.)","inputs":{"actions-files-checkout-path":{"description":"The path on the github-runner where the auto-format action scripts are checked out at runtime","default":"github-action-auto-format","required":false},"bot-name":{"description":"GitHub username for writing new commits","required":false,"default":"cloudpossebot"},"bot-email":{"description":"Email address associated with the GitHub user for writing new commits","required":false},"format-task":{"description":"Name of formatting task to execute. (Options include: readme, github, terraform, and context.)","required":true},"workflow-token":{"description":"GitHub Token for use in `github_format.sh` and PR creation steps. This token must be granted `workflows` permissions.","required":true}},"runs":{"using":"composite","steps":[{"name":"Checkout commit","uses":"actions/checkout@v2","with":{"ref":"${{ github.event.pull_request.head.ref }}","token":"${{ inputs.workflow-token }}"}},{"name":"Checkout github-action-auto-format repo to load script locally on runner","uses":"actions/checkout@v2","with":{"repository":"cloudposse/github-action-auto-format","path":"${{ inputs.actions-files-checkout-path }}"}},{"name":"Git config","if":"${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}","shell":"bash","run":"# Construct bot-email from inputs.bot-name if inputs.bot-email not provided\nbot_id=$(curl -sSL 'https://api.github.com/users/${{ inputs.bot-name }}' | jq .id)\nif [ -z ${{ inputs.bot-email }} ]; then\n  bot_email=${bot_id}+${{ inputs.bot-name }}@users.noreply.github.com\nelse\n  bot_email=${{ inputs.bot-email }}\nfi\n# configure git\ngit config --local user.name \"${{ inputs.bot-name }}\"\ngit config --local user.email \"${bot_email}\"\ngit config --global --add safe.directory /github/workspace\n"},{"name":"Carry out self-tests","if":"${{ contains( github.repository, 'cloudposse/github-action-auto-format') }}","uses":"docker://cloudposse/build-harness:latest","with":{"entrypoint":"/github/workspace/${{ inputs.actions-files-checkout-path }}/scripts/${{ inputs.format-task }}/test.sh"},"env":{"IGNORE_PATH":"${{ inputs.actions-files-checkout-path }}","EVENT_TYPE":"${{ github.event_name }}"}},{"name":"Carry out requested formatting","if":"${{ ! contains( github.repository, 'cloudposse/github-action-auto-format') }}","uses":"docker://cloudposse/build-harness:latest","with":{"entrypoint":"/github/workspace/${{ inputs.actions-files-checkout-path }}/scripts/${{ inputs.format-task }}/format.sh"},"env":{"IGNORE_PATH":"${{ inputs.actions-files-checkout-path }}","HOST_REPO":"${{ github.repository }}","EVENT_TYPE":"${{ github.event_name }}"}},{"name":"Set PR parameters","id":"pr-parameters","if":"${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}","shell":"bash","run":"# run script\n\"/github/workspace/${{ inputs.actions-files-checkout-path }}/scripts/${{ inputs.format-task }}/pr_parameters.sh\"\n"},{"name":"Clean up github-action-auto-format repo","shell":"bash","run":"rm -r ${{ inputs.actions-files-checkout-path }}\n"},{"name":"Push to pre-existing PR branch","if":"${{ github.event_name != 'schedule' \u0026\u0026 github.event_name != 'workflow_dispatch' }}","shell":"bash","run":"# Prevent looping by not pushing changes in response to changes from cloudpossebot\n[[ \"${{ github.event.sender.login }}\" ==  \"${{ inputs.bot-name }}\" ]] || git push\n"},{"name":"Create pull request and PR branch","if":"${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}","uses":"peter-evans/create-pull-request@v4","with":{"token":"${{ inputs.workflow-token }}","commit-message":"${{ steps.pr-parameters.outputs.pr-commit-message }}","title":"${{ steps.pr-paramters.outputs.pr-title }}","body":"${{ steps.pr-parameters.outputs.pr-body }}","labels":"${{ steps.pr-parameters.outputs.pr-labels }}","branch":"github-action-auto-format"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":37051005,"uuid":"469588705","full_name":"cloudposse/github-action-auto-format","owner":"cloudposse","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-15T19:59:00.000Z","size":1068,"stargazers_count":10,"open_issues_count":4,"forks_count":5,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-09-15T21:31:20.811Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://cloudposse.com/accelerate","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudposse.png","metadata":{"funding":{"github":"cloudposse"},"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2022-03-14T05:09:26.000Z","updated_at":"2025-09-15T19:59:04.000Z","dependencies_parsed_at":"2024-09-13T06:46:19.927Z","dependency_job_id":null,"html_url":"https://github.com/cloudposse/github-action-auto-format","commit_stats":{"total_commits":13,"total_committers":2,"mean_commits":6.5,"dds":0.3846153846153846,"last_synced_commit":"91917180b375a99b2e3c0c7d4a9d6b498c2554a2"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/cloudposse/github-action-auto-format","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudposse","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/sbom","scorecard":{"id":293165,"data":{"date":"2025-08-11","repo":{"name":"github.com/cloudposse/github-action-auto-format","commit":"259505a6580de5852f1029d2addc4b16780b1bcc"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":4.5,"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":"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 4/20 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":"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/auto-format-reusable.yml:1","Warn: no topLevel permission defined: .github/workflows/auto-format.yml:1","Warn: topLevel 'actions' permission set to 'write': .github/workflows/branch.yml:21","Warn: topLevel 'contents' permission set to 'write': .github/workflows/branch.yml:20","Warn: topLevel 'contents' permission set to 'write': .github/workflows/release.yml:8","Warn: no topLevel permission defined: .github/workflows/validate-codeowners.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":"Maintained","score":0,"reason":"0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: third-party GitHubAction not pinned by hash: .github/workflows/auto-format-reusable.yml:39: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-auto-format/auto-format-reusable.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/auto-format.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-auto-format/auto-format.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/branch.yml:25: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-auto-format/branch.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-auto-format/release.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/validate-codeowners.yml:10: update your workflow using https://app.stepsecurity.io/secureworkflow/cloudposse/github-action-auto-format/validate-codeowners.yml/main?enable=pin","Info:   0 out of   5 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":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"License","score":0,"reason":"license file not detected","details":["Warn: project does not have a license file"],"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":"Security-Policy","score":10,"reason":"security policy file detected","details":["Info: security policy file detected: github.com/cloudposse/.github/SECURITY.md:1","Info: Found linked content: github.com/cloudposse/.github/SECURITY.md:1","Info: Found disclosure, vulnerability, and/or timelines in security policy: github.com/cloudposse/.github/SECURITY.md:1","Info: Found text in security policy: github.com/cloudposse/.github/SECURITY.md:1"],"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":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 15 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":"Branch-Protection","score":6,"reason":"branch protection is not maximal on development and all release branches","details":["Info: 'allow deletion' disabled on branch 'main'","Info: 'force pushes' disabled on branch 'main'","Warn: 'branch protection settings apply to administrators' is disabled on branch 'main'","Info: 'stale review dismissal' is required to merge on branch 'main'","Warn: required approving review count is 1 on branch 'main'","Info: codeowner review is required on branch 'main'","Info: 'last push approval' is required to merge on branch 'main'","Warn: no status checks found to merge onto branch 'main'","Info: PRs are required in order to make changes on 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"}}]},"last_synced_at":"2025-08-17T18:49:01.108Z","repository_id":37051005,"created_at":"2025-08-17T18:49:01.108Z","updated_at":"2025-08-17T18:49:01.108Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275705587,"owners_count":25513170,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-18T02:00:09.552Z","response_time":77,"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":"cloudposse","name":"Cloud Posse","uuid":"16398900","kind":"organization","description":"DevOps Accelerator for AWS Infrastructure  🙌  Hire Us!  \u003chttps://cloudposse.com/services\u003e","email":"hello@cloudposse.com","website":"https://cloudposse.com/","location":"United States of America","twitter":"cloudposse","company":null,"icon_url":"https://avatars.githubusercontent.com/u/16398900?v=4","repositories_count":258,"last_synced_at":"2025-09-06T01:57:39.362Z","metadata":{"has_sponsors_listing":true,"funding":{"github":"cloudposse"}},"html_url":"https://github.com/cloudposse","funding_links":["https://github.com/sponsors/cloudposse"],"total_stars":16583,"followers":1631,"following":0,"created_at":"2022-11-03T23:59:39.987Z","updated_at":"2025-09-06T01:57:39.362Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudposse","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudposse/repositories"},"tags":[{"name":"0.15.0","sha":"00c60a5a46919950bd1d9ec8d2dc3b02981246e6","kind":"commit","published_at":"2023-05-15T15:49:48.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.15.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.15.0","dependencies_parsed_at":"2023-06-02T00:36:28.702Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.15.0/manifests"},{"name":"0.14.0","sha":"91917180b375a99b2e3c0c7d4a9d6b498c2554a2","kind":"commit","published_at":"2022-08-16T21:39:36.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.14.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.14.0","dependencies_parsed_at":"2023-05-31T09:09:33.399Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.14.0/manifests"},{"name":"0.13.0","sha":"2dfd4290525f1943f4cd183f722e22572a14ebfa","kind":"commit","published_at":"2022-08-16T21:35:46.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.13.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.13.0","dependencies_parsed_at":"2023-05-31T09:09:33.986Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.13.0/manifests"},{"name":"0.11.0","sha":"970af4c15a720047204400fe5b5ae52fb2991e9b","kind":"commit","published_at":"2022-08-16T21:05:58.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.11.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.11.0","dependencies_parsed_at":"2023-05-31T09:09:34.585Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.11.0/manifests"},{"name":"v0.12.0","sha":"970af4c15a720047204400fe5b5ae52fb2991e9b","kind":"commit","published_at":"2022-08-16T21:05:58.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/v0.12.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/v0.12.0","dependencies_parsed_at":"2023-05-31T09:09:36.503Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@v0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/v0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/v0.12.0/manifests"},{"name":"0.10.0","sha":"c49e44d72de1085068d9b3b16a5694e07bfcb7eb","kind":"commit","published_at":"2022-08-16T20:48:48.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.10.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.10.0","dependencies_parsed_at":"2023-05-31T09:09:35.223Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.10.0/manifests"},{"name":"0.9.0","sha":"70e309aa37f9bb21aca2534939bc39f2fedf7158","kind":"commit","published_at":"2022-08-16T20:45:30.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.9.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.9.0","dependencies_parsed_at":"2023-05-31T09:09:35.860Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.9.0/manifests"},{"name":"0.8.0","sha":"a5890f590d67b833173600243da9dce0213f5849","kind":"commit","published_at":"2022-07-07T21:14:52.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.8.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.8.0","dependencies_parsed_at":"2023-05-31T09:09:37.092Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.8.0/manifests"},{"name":"0.7.0","sha":"308acfd9fb06377354155059e378b9b2940d0afb","kind":"commit","published_at":"2022-06-30T05:47:48.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.7.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.7.0","dependencies_parsed_at":"2023-05-31T09:09:37.823Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.7.0/manifests"},{"name":"0.5.0","sha":"424e36d49ea3d5205a344341ee6ea4d6095f507b","kind":"commit","published_at":"2022-06-30T05:24:12.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.5.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.5.0","dependencies_parsed_at":"2023-05-31T09:09:38.971Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.5.0/manifests"},{"name":"0.6.0","sha":"81d2e34b849945bbe619ffa78084095ba47982f4","kind":"commit","published_at":"2022-06-30T05:07:34.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.6.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.6.0","dependencies_parsed_at":"2023-05-31T09:09:38.455Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.6.0/manifests"},{"name":"0.4.1","sha":"8dbd976a423e96cc29deec5395c5d585bfe9578b","kind":"commit","published_at":"2022-06-14T19:37:20.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.4.1","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.4.1","dependencies_parsed_at":"2023-05-31T09:09:39.472Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.4.1/manifests"},{"name":"0.4.0","sha":"f7ac8ac3175f1f0579d6d8bd03baf094a87ab66f","kind":"commit","published_at":"2022-06-14T19:23:58.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.4.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.4.0","dependencies_parsed_at":"2023-05-31T09:09:39.923Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.4.0/manifests"},{"name":"0.3.0","sha":"baa4e1e03952f685ecccdb5218c7b24cfa2697c5","kind":"commit","published_at":"2022-06-14T18:52:20.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.3.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.3.0","dependencies_parsed_at":"2023-05-31T09:09:40.406Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.3.0/manifests"},{"name":"0.2.0","sha":"58a0b96389b160b8ef521fa36de973960903b673","kind":"commit","published_at":"2022-06-14T00:17:03.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.2.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.2.0","dependencies_parsed_at":"2023-05-31T09:09:40.872Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.2.0/manifests"},{"name":"0.1.0","sha":"25a0742d4cf3580d5782c22a9654693aac389f24","kind":"commit","published_at":"2022-06-03T20:56:39.000Z","download_url":"https://codeload.github.com/cloudposse/github-action-auto-format/tar.gz/0.1.0","html_url":"https://github.com/cloudposse/github-action-auto-format/releases/tag/0.1.0","dependencies_parsed_at":"2023-05-31T09:09:41.388Z","dependency_job_id":null,"purl":"pkg:github/cloudposse/github-action-auto-format@0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/tags/0.1.0/manifests"}]},"repo_metadata_updated_at":"2025-09-18T03:52:05.016Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":1,"rankings":{"downloads":null,"dependent_repos_count":24.73459039771827,"dependent_packages_count":0.0,"stargazers_count":22.82364126128981,"forks_count":12.929805102202504,"docker_downloads_count":null,"average":15.122009190302647},"purl":"pkg:githubactions/cloudposse/github-action-auto-format","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/cloudposse/github-action-auto-format","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/cloudposse/github-action-auto-format","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/cloudposse/github-action-auto-format/dependencies","status":null,"funding_links":["https://github.com/sponsors/cloudposse"],"critical":null,"issue_metadata":{"last_synced_at":"2025-09-17T00:38:17.737Z","issues_count":0,"pull_requests_count":59,"avg_time_to_close_issue":null,"avg_time_to_close_pull_request":233654.69090909092,"issues_closed_count":0,"pull_requests_closed_count":55,"pull_request_authors_count":6,"issue_authors_count":0,"avg_comments_per_issue":null,"avg_comments_per_pull_request":0.1864406779661017,"merged_pull_requests_count":20,"bot_issues_count":0,"bot_pull_requests_count":1,"past_year_issues_count":0,"past_year_pull_requests_count":1,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":9.0,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":1,"past_year_pull_request_authors_count":1,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":1,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudposse%2Fgithub-action-auto-format/issues","maintainers":[{"login":"cloudpossebot","count":33,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/cloudpossebot"},{"login":"osterman","count":8,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/osterman"},{"login":"goruha","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/goruha"},{"login":"max-lobur","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/max-lobur"}],"active_maintainers":[{"login":"osterman","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/osterman"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-auto-format/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-auto-format/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-auto-format/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-auto-format/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/cloudposse%2Fgithub-action-auto-format/codemeta","maintainers":[]}