{"id":6307125,"name":"badsyntax/github-action-aws-static-stack","ecosystem":"actions","description":"Deploy your static website to the AWS Edge using S3, CloudFront \u0026 Lambda@Edge","homepage":null,"licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/badsyntax/github-action-aws-static-stack","keywords_array":[],"namespace":"badsyntax","versions_count":9,"first_release_published_at":"2021-12-13T17:22:35.000Z","latest_release_published_at":"2021-12-19T07:47:40.000Z","latest_release_number":"v0.0.9","last_synced_at":"2026-03-12T19:19:39.983Z","created_at":"2023-02-11T02:32:52.174Z","updated_at":"2026-03-12T19:19:39.983Z","registry_url":"https://github.com/badsyntax/github-action-aws-static-stack","install_command":null,"documentation_url":null,"metadata":{"name":"AWS Edge Static Stack","description":"Deploy your static website to the AWS Edge using S3, CloudFront \u0026 Lambda@Edge","author":"Richard Willis \u003cwillis.rh@gmail.com\u003e","branding":{"icon":"upload-cloud","color":"gray-dark"},"inputs":{"cf-stack-name":{"required":true,"description":"The name of the Cloudformation stack to be created. For example: example-com-static-cloudformation-stack"},"cf-template":{"required":true,"description":"The relative path to the CloudFormation stack template. For example: ./cloudformation/s3bucket_with_cloudfront.yml"},"cf-apply-change-set":{"required":true,"description":"Whether to apply the CloudFormation ChangeSet (if any)"},"token":{"required":true,"description":"GitHub Token used for commenting on Pull Requests. Use the default GITHUB_TOKEN from secrets."},"aws-region":{"require":true,"description":"The AWS region in which to create the stack. You should set this to: us-east-1"},"s3-bucket-name":{"required":true,"description":"The name of S3 bucket to be created, to store your static files. Must end with region name, for example: example.com-us-east-1"},"s3-allowed-origins":{"required":true,"description":"A list of allowed domains to request resources from S3. For example: https://example.com,https://*.preview.example.com"},"cloudfront-root-hosts":{"required":true,"description":"A list of hosts assigned to the Root CloudFront distribution. For example: example.com"},"cloudfront-preview-hosts":{"required":true,"description":"A list of hosts assigned to the Preview CloudFront distribution. For example: *.preview.example.com"},"cloudfront-default-root-object":{"required":true,"description":"The CloudFront default root object. For example: index.html"},"certificate-arn":{"required":true,"description":"ARN of the certificate for the root and preview domains. For example: arn:aws:acm:us-east-1:1234567:certificate/123abc-123abc-1234-5678-abcdef"},"src-dir":{"required":true,"description":"Path to build/out directory that contains the static files. For example: ./out"},"static-files-glob":{"required":true,"description":"Glob pattern for immutable static files. For example: _next/**"},"lambda-version":{"required":true,"description":"The lambda version. Required to deploy a new lambda. You must update this if changing the lambda. For example: 1.0.0"},"delete-preview-site-on-pr-close":{"required":true,"description":"Whether to delete the preview site on PR close"},"comment-template":{"required":true,"description":"Path to the Pull Request comment template. For example: .github/preview-site-comment.md"}},"runs":{"using":"composite","steps":[{"uses":"actions/github-script@v5","name":"Set vars","id":"vars","with":{"script":"const isPullRequest = context.eventName === 'pull_request';\nconst prBranchName = isPullRequest\n  ? context.payload.pull_request.head.ref.replace(/\\//g, '-')\n  : '';\nconst prefix = isPullRequest ? `preview/${prBranchName}` : 'root';\ncore.setOutput('preview-branch', prBranchName);\ncore.setOutput('prefix', prefix);\n"}},{"uses":"badsyntax/github-action-aws-cloudformation@v0.0.6","name":"Update CloudFormation Stack","id":"update-stack","with":{"stack-name":"${{ inputs.cf-stack-name }}","template":"${{ inputs.cf-template }}","apply-change-set":"${{ inputs.cf-apply-change-set }}","aws-region":"${{ inputs.aws-region }}","parameters":"S3BucketName=${{ inputs.s3-bucket-name }}\u0026\nS3AllowedOrigins=${{ inputs.s3-allowed-origins }}\u0026\nCloudFrontRootHosts=${{ inputs.cloudfront-root-hosts }}\u0026\nCloudFrontPreviewHosts=${{ inputs.cloudfront-preview-hosts }}\u0026\nCertificateARN=${{ inputs.certificate-arn }}\u0026\nCloudFrontDefaultRootObject=${{ inputs.cloudfront-default-root-object }}\u0026\nLambdaVersion=${{ inputs.lambda-version }}\u0026\nStackName=${{ inputs.cf-stack-name }}\n"}},{"uses":"badsyntax/github-action-aws-s3@v0.0.10","name":"Sync mutable HTML files to S3","id":"sync-html-s3","if":"github.event_name != 'pull_request' || github.event.action != 'closed'","with":{"bucket":"${{ steps.update-stack.outputs.S3BucketName }}","action":"sync","src-dir":"${{ inputs.src-dir }}","files-glob":"**/*.html","aws-region":"${{ inputs.aws-region }}","prefix":"${{ steps.vars.outputs.prefix }}","strip-extension-glob":"**/**.html","cache-control":"public,max-age=0,s-maxage=31536000,must-revalidate"}},{"uses":"badsyntax/github-action-aws-s3@v0.0.10","name":"Sync immutable files to S3","id":"sync-immutable-s3","if":"github.event_name != 'pull_request' || github.event.action != 'closed'","with":{"bucket":"${{ steps.update-stack.outputs.S3BucketName }}","action":"sync","src-dir":"${{ inputs.src-dir }}","files-glob":"${{ inputs.static-files-glob }}","aws-region":"${{ inputs.aws-region }}","prefix":"${{ steps.vars.outputs.prefix }}","cache-control":"public,max-age=31536000,immutable"}},{"uses":"actions/github-script@v5","name":"Set CloudFront Distribution Id","id":"cloudfront-distribution-id","with":{"script":"const distributionId =\n  context.eventName === 'pull_request'\n    ? '${{ steps.update-stack.outputs.CFDistributionPreviewId }}'\n    : '${{ steps.update-stack.outputs.CFDistributionRootId }}';\ncore.setOutput('distribution-id', distributionId);\n"}},{"uses":"badsyntax/github-action-aws-cloudfront@v0.0.3","name":"Invalidate CloudFront Cache","id":"invalidate-cloudfront-cache","if":"github.event_name != 'pull_request' || github.event.action != 'closed'","with":{"distribution-id":"${{ steps.cloudfront-distribution-id.outputs.distribution-id }}","aws-region":"${{ inputs.aws-region }}","origin-prefix":"${{ steps.vars.outputs.prefix }}","include-origin-prefix":"${{ github.event_name == 'pull_request' }}","invalidate-paths":"${{ steps.sync-html-s3.outputs.modified-keys }}","default-root-object":"${{ inputs.cloudfront-default-root-object }}"}},{"uses":"badsyntax/github-action-issue-comment@v0.0.3","name":"Comment on Pull Request","if":"github.event_name == 'pull_request' \u0026\u0026 github.event.action != 'closed'","with":{"action":"create-clean","template":"${{ inputs.comment-template }}","id":"deploy","token":"${{ inputs.token }}","issue-number":"${{ github.event.pull_request.number }}","template-inputs":"{\n  \"changes\": ${{ steps.update-stack.outputs.changes }},\n  \"outputs\": ${{ steps.update-stack.outputs.outputs }},\n  \"applyChangeSet\": ${{ inputs.cf-apply-change-set }},\n  \"previewBranch\": \"${{ steps.vars.outputs.preview-branch }}\"\n}\n"}},{"uses":"badsyntax/github-action-aws-s3@v0.0.10","name":"Delete Preview Files in S3","id":"delete-preview-files","if":"github.event_name == 'pull_request' \u0026\u0026 github.event.action == 'closed' \u0026\u0026 inputs.delete-preview-site-on-pr-close == 'true'","with":{"bucket":"${{ steps.update-stack.outputs.S3BucketName }}","action":"clean","src-dir":"${{ inputs.src-dir }}","files-glob":"**/*","aws-region":"${{ inputs.aws-region }}","prefix":"${{ steps.vars.outputs.prefix }}"}},{"uses":"badsyntax/github-action-issue-comment@v0.0.3","name":"Delete comment","if":"github.event_name == 'pull_request' \u0026\u0026 github.event.action == 'closed' \u0026\u0026 inputs.delete-preview-site-on-pr-close == 'true'","with":{"action":"delete","id":"deploy","token":"${{ inputs.token }}","issue-number":"${{ github.event.pull_request.number }}"}}]},"default_branch":"master","path":null},"repo_metadata":{"id":37792588,"uuid":"437470408","full_name":"badsyntax/github-action-aws-static-stack","owner":"badsyntax","description":"A GitHub Action to deploy your static website to the AWS Edge.","archived":false,"fork":false,"pushed_at":"2023-10-02T19:20:17.000Z","size":310,"stargazers_count":3,"open_issues_count":5,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-10T23:44:42.377Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","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/badsyntax.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-12T06:27:40.000Z","updated_at":"2023-12-11T21:19:41.000Z","dependencies_parsed_at":"2024-10-27T21:44:36.845Z","dependency_job_id":"7345785a-0f52-4c00-8cf9-2c9e64a6ad00","html_url":"https://github.com/badsyntax/github-action-aws-static-stack","commit_stats":{"total_commits":37,"total_committers":3,"mean_commits":"12.333333333333334","dds":0.05405405405405406,"last_synced_commit":"e4b7ea27cefe489428b9cd95b223f06f74b6ef0f"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/badsyntax","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/sbom","scorecard":{"id":222975,"data":{"date":"2025-08-11","repo":{"name":"github.com/badsyntax/github-action-aws-static-stack","commit":"e4b7ea27cefe489428b9cd95b223f06f74b6ef0f"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":3.6,"checks":[{"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":"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":"Code-Review","score":0,"reason":"Found 0/17 approved changesets -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Maintained","score":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":"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":"Pinned-Dependencies","score":3,"reason":"dependency not pinned by hash detected -- score normalized to 3","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/deploy.yml:22: update your workflow using https://app.stepsecurity.io/secureworkflow/badsyntax/github-action-aws-static-stack/deploy.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/deploy.yml:25: update your workflow using https://app.stepsecurity.io/secureworkflow/badsyntax/github-action-aws-static-stack/deploy.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/release-drafter.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/badsyntax/github-action-aws-static-stack/release-drafter.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/badsyntax/github-action-aws-static-stack/test.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/badsyntax/github-action-aws-static-stack/test.yml/master?enable=pin","Info:   0 out of   3 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   2 third-party GitHubAction dependencies pinned","Info:   1 out of   1 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":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/deploy.yml:1","Warn: topLevel 'contents' permission set to 'write': .github/workflows/release-drafter.yml:9","Info: topLevel 'pull-requests' permission set to 'read': .github/workflows/release-drafter.yml:10","Warn: no topLevel permission defined: .github/workflows/test.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":"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":"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":"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":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE.md:0","Info: FSF or OSI recognized license: MIT License: LICENSE.md: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 'master'"],"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":"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":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 23 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-17T03:02:21.922Z","repository_id":37792588,"created_at":"2025-08-17T03:02:21.922Z","updated_at":"2025-08-17T03:02:21.922Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279032535,"owners_count":26089386,"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-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"badsyntax","name":"Richard Willis","uuid":"102141","kind":"user","description":"","email":"","website":"https://richardwillis.info","location":"North Yorkshire, UK","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/102141?v=4","repositories_count":271,"last_synced_at":"2024-04-15T11:01:17.786Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/badsyntax","funding_links":[],"total_stars":1545,"followers":161,"following":369,"created_at":"2022-11-02T20:03:39.062Z","updated_at":"2024-04-15T11:02:23.753Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/badsyntax","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/badsyntax/repositories"},"tags":[{"name":"v0.0.9","sha":"e4b7ea27cefe489428b9cd95b223f06f74b6ef0f","kind":"commit","published_at":"2021-12-19T07:47:40.000Z","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/v0.0.9","html_url":"https://github.com/badsyntax/github-action-aws-static-stack/releases/tag/v0.0.9","dependencies_parsed_at":"2023-05-31T02:09:30.178Z","dependency_job_id":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack@v0.0.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.9/manifests"},{"name":"v0.0.8","sha":"58ddc8348bfda886a34b239818d4ea6b500e687a","kind":"commit","published_at":"2021-12-18T14:50:41.000Z","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/v0.0.8","html_url":"https://github.com/badsyntax/github-action-aws-static-stack/releases/tag/v0.0.8","dependencies_parsed_at":"2023-05-31T02:09:30.735Z","dependency_job_id":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack@v0.0.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.8/manifests"},{"name":"v0.0.7","sha":"de5f498b86eecfba2ab0244dca6efce0890bcb7f","kind":"commit","published_at":"2021-12-18T14:29:21.000Z","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/v0.0.7","html_url":"https://github.com/badsyntax/github-action-aws-static-stack/releases/tag/v0.0.7","dependencies_parsed_at":"2023-05-31T02:09:31.214Z","dependency_job_id":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack@v0.0.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.7/manifests"},{"name":"v0.0.6","sha":"505ee4f331771f1c266997fea0bc5e5c98eb0cf0","kind":"commit","published_at":"2021-12-18T12:50:43.000Z","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/v0.0.6","html_url":"https://github.com/badsyntax/github-action-aws-static-stack/releases/tag/v0.0.6","dependencies_parsed_at":"2023-05-31T02:09:31.719Z","dependency_job_id":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack@v0.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.6/manifests"},{"name":"v0.0.5","sha":"f14656c7988fa117825f08ffd0b8016ffc1af52f","kind":"commit","published_at":"2021-12-18T12:26:46.000Z","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/v0.0.5","html_url":"https://github.com/badsyntax/github-action-aws-static-stack/releases/tag/v0.0.5","dependencies_parsed_at":"2023-05-31T02:09:32.819Z","dependency_job_id":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack@v0.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.5/manifests"},{"name":"v0.0.4","sha":"c8ae6fbc42e533d8d1dc07629792a9d730a1fff1","kind":"commit","published_at":"2021-12-18T11:47:45.000Z","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/v0.0.4","html_url":"https://github.com/badsyntax/github-action-aws-static-stack/releases/tag/v0.0.4","dependencies_parsed_at":"2023-05-31T02:09:33.466Z","dependency_job_id":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack@v0.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.4/manifests"},{"name":"v0.0.3","sha":"69922c1333c7afee22e9af8de92aa7a64b88269b","kind":"commit","published_at":"2021-12-14T23:36:35.000Z","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/v0.0.3","html_url":"https://github.com/badsyntax/github-action-aws-static-stack/releases/tag/v0.0.3","dependencies_parsed_at":"2023-05-31T02:09:34.007Z","dependency_job_id":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack@v0.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.3/manifests"},{"name":"v0.0.2","sha":"b085771b96443279448c4d02bc83983dd0edfd2a","kind":"commit","published_at":"2021-12-13T22:17:29.000Z","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/v0.0.2","html_url":"https://github.com/badsyntax/github-action-aws-static-stack/releases/tag/v0.0.2","dependencies_parsed_at":"2023-05-31T02:09:34.678Z","dependency_job_id":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack@v0.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.2/manifests"},{"name":"v0.0.1","sha":"9fccf0e1b3544f8090175b60f1d1dfd4e6f76f22","kind":"commit","published_at":"2021-12-13T17:22:35.000Z","download_url":"https://codeload.github.com/badsyntax/github-action-aws-static-stack/tar.gz/v0.0.1","html_url":"https://github.com/badsyntax/github-action-aws-static-stack/releases/tag/v0.0.1","dependencies_parsed_at":"2023-05-31T02:09:35.203Z","dependency_job_id":null,"purl":"pkg:github/badsyntax/github-action-aws-static-stack@v0.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badsyntax%2Fgithub-action-aws-static-stack/tags/v0.0.1/manifests"}]},"repo_metadata_updated_at":"2025-10-15T11:55:10.121Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":1,"rankings":{"downloads":null,"dependent_repos_count":24.791633655522105,"dependent_packages_count":0.0,"stargazers_count":27.409285374742513,"forks_count":21.692283314847092,"docker_downloads_count":null,"average":18.47330058627793},"purl":"pkg:githubactions/badsyntax/github-action-aws-static-stack","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/badsyntax/github-action-aws-static-stack","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/badsyntax/github-action-aws-static-stack","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/badsyntax/github-action-aws-static-stack/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2024-10-27T21:14:18.751Z","issues_count":1,"pull_requests_count":55,"avg_time_to_close_issue":346693.0,"avg_time_to_close_pull_request":4477305.32,"issues_closed_count":1,"pull_requests_closed_count":50,"pull_request_authors_count":2,"issue_authors_count":1,"avg_comments_per_issue":1.0,"avg_comments_per_pull_request":1.1636363636363636,"merged_pull_requests_count":14,"bot_issues_count":0,"bot_pull_requests_count":38,"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/badsyntax%2Fgithub-action-aws-static-stack/issues","maintainers":[{"login":"badsyntax","count":18,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/badsyntax"}],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/badsyntax%2Fgithub-action-aws-static-stack/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/badsyntax%2Fgithub-action-aws-static-stack/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/badsyntax%2Fgithub-action-aws-static-stack/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/badsyntax%2Fgithub-action-aws-static-stack/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/badsyntax%2Fgithub-action-aws-static-stack/codemeta","maintainers":[]}