{"id":6351954,"name":"freckle/setup-platform-action","ecosystem":"actions","description":"Install and configure PlatformCLI and Stackctl","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/freckle/setup-platform-action","keywords_array":["ghvm-managed"],"namespace":"freckle","versions_count":36,"first_release_published_at":"2022-01-18T16:11:13.000Z","latest_release_published_at":"2026-07-20T14:27:42.000Z","latest_release_number":"v7.10.2","last_synced_at":"2026-09-08T18:52:30.976Z","created_at":"2023-02-17T03:30:59.058Z","updated_at":"2026-09-11T10:24:03.367Z","registry_url":"https://github.com/freckle/setup-platform-action","install_command":null,"documentation_url":null,"metadata":{"name":"Platform setup","description":"Install and configure PlatformCLI and Stackctl","inputs":{"version":{"description":"The version of PlatformCLI to install. Do not include the `v` prefix here.\nThe default is to lookup the latest release. We recommend using this\ndefault, along with specifying a `required_version` constraint (such as\n`=~ 3`) in your `.platform.yaml`.\n","required":false},"token":{"description":"A GitHub access token with rights to fetch the private PlatformCLI release\nartifacts. Either this or `github-app-{id,private-key}` must be given.\n","required":false},"github-app-id":{"description":"Provide this (and `github-private-key`) instead of `token` to generate\nand use one from the identified App.\n","required":false},"github-private-key":{"description":"Provide this (and `github-app-id`) instead of `token` to generate and use\none from the identified App.\n","required":false},"github-app-private-key":{"description":"Deprecated, use github-private-key","required":false},"app-directory":{"description":"If present, this will be set as `PLATFORM_APP_DIRECTORY` for the remainder\nof the workflow. For details on what this affects, see `platform(1)`.\n","default":""},"environment":{"description":"If present, this will be set as `PLATFORM_ENVIRONMENT` for the remainder\nof the workflow. For details on what this affects, see `platform(1)`.\n","required":false},"resource":{"description":"If present, this will be set as `PLATFORM_RESOURCE` for the remainder of\nthe workflow. For details on what this affects, see `platform(1)`.\n","required":false},"no-validate":{"description":"If present, this will be set as `PLATFORM_NO_VALIDATE` for the remainder\nof the workflow. For details on what this affects, see `platform(1)`.\n","required":false},"stackctl-version":{"description":"The version of Stackctl to install. Do not include the `v` prefix here.\nThe default is to lookup the latest release.\n","required":false},"stackctl-directory":{"description":"Value to set as STACKCTL_DIRECTORY","default":".platform/specs"},"stackctl-filter":{"description":"Value to set as STACKCTL_FILTER","required":false},"fetch-platform-yaml":{"description":"Automatically fetch `.platform.yaml` via GitHub API if not present. This\ncan be useful to avoid a checkout if all your Job needs is this file. This\nwill always use `github.token`, regardless of our own `token` input.\n","default":"true"}},"outputs":{"tag":{"value":"${{ steps.set-tag.outputs.tag }}","description":"A consistent, source-specific value that should be used throughout\nbuild/push/deploy actions. It's currently the head sha for `pull_request`\nevents, the \"after\" sha for `push` events, and `github.sha` for all other\nevents\n"},"cache":{"value":"${{ steps.set-cache.outputs.cache }}","description":"Path to the `.platform/cache` directory, for which we've setup an\n`actions/cache` step. This output is only useful if in a multi-app\nrepository.\n"}},"runs":{"using":"composite","steps":[{"if":"${{ !inputs.token \u0026\u0026 !(inputs.github-app-id \u0026\u0026 (inputs.github-private-key || inputs.github-app-private-key)) }}","shell":"bash","run":"# Validate token or github-app inputs\necho \"Either token or github-app-id/private-key must be provided\" \u003e\u00262\nexit 1\n"},{"id":"app-token","if":"${{ !inputs.token }}","uses":"actions/create-github-app-token@v3","with":{"client-id":"${{ inputs.github-app-id }}","private-key":"${{ inputs.github-private-key || inputs.github-app-private-key }}","repositories":"platform,stackctl"}},{"id":"token","shell":"bash","run":"# Choose token output\ntoken=${{ inputs.token || steps.app-token.outputs.token }}\necho \"token=$token\" \u003e\u003e\"$GITHUB_OUTPUT\"\n"},{"if":"${{ runner.os == 'macOS' }}","shell":"bash","run":"# Replace BSD install with GNU install\nbrew install coreutils\nsudo mkdir -p /usr/local/bin\nsudo ln -sf \"$(which ginstall)\" /usr/local/bin/install\ninstall --version | grep -Fq GNU\n"},{"id":"prep","if":"${{ inputs.version == '' }}","shell":"bash","run":"# Determine latest PlatformCLI version\ncurl \\\n  --header \"Authorization: Bearer ${{ steps.token.outputs.token }}\" \\\n  --silent \\\n  --show-error \\\n  --fail https://api.github.com/repos/freckle/platform/releases |\n  jq '.[] | select(.draft|not) | select(.prerelease|not) | .tag_name' --raw-output |\n  head -n 1 |\n  sed 's/^v/version=/' \u003e\u003e\"$GITHUB_OUTPUT\"\n"},{"id":"prep-stackctl","if":"${{ inputs.stackctl-version == '' }}","shell":"bash","run":"# Determine latest Stackctl version\ncurl \\\n  --header \"Authorization: Bearer ${{ steps.token.outputs.token }}\" \\\n  --silent \\\n  --show-error \\\n  --fail https://api.github.com/repos/freckle/stackctl/releases |\n  jq '.[] | select(.draft|not) | select(.prerelease|not) | .tag_name' --raw-output |\n  head -n 1 |\n  sed 's/^v/version=/' \u003e\u003e\"$GITHUB_OUTPUT\"\n"},{"name":"Install PlatformCLI","uses":"pbrisbin/setup-tool-action@v2","with":{"name":"platform","version":"${{ inputs.version || steps.prep.outputs.version }}","url":"https://github.com/freckle/{name}/releases/download/v{version}/{name}-{arch}-{os}.{ext}","github-token":"${{ steps.token.outputs.token }}","arch":"x86_64","os-darwin":"osx","subdir":"{name}"}},{"name":"Install Stackctl","uses":"pbrisbin/setup-tool-action@v2","with":{"name":"stackctl","version":"${{ inputs.stackctl-version || steps.prep-stackctl.outputs.version }}","url":"https://github.com/freckle/{name}/releases/download/v{version}/{name}-{arch}-{os}.{ext}","arch":"x86_64","os-darwin":"osx","subdir":"{name}"}},{"shell":"bash","run":"# Configure PlatformCLI and Stackctl ENV\n{\n  echo 'LOG_COLOR=always'\n  echo 'LOG_DESTINATION=stderr'\n\n  if [[ -n \"${{ inputs.app-directory }}\" ]]; then\n    echo 'PLATFORM_APP_DIRECTORY=${{ inputs.app-directory }}'\n  fi\n\n  if [[ -n \"${{ inputs.environment }}\" ]]; then\n    echo 'PLATFORM_ENVIRONMENT=${{ inputs.environment }}'\n  fi\n\n  if [[ -n \"${{ inputs.resource }}\" ]]; then\n    echo 'PLATFORM_RESOURCE=${{ inputs.resource }}'\n  fi\n\n  if [[ -n \"${{ inputs.no-validate }}\" ]]; then\n    echo 'PLATFORM_NO_VALIDATE=${{ inputs.no-validate }}'\n  fi\n\n  if [[ -n \"${{ inputs.stackctl-directory }}\" ]]; then\n    app=${{ inputs.app-directory }}\n    app=${app:-.}\n    echo \"STACKCTL_DIRECTORY=$app/${{ inputs.stackctl-directory }}\"\n  fi\n\n  if [[ -n \"${{ inputs.stackctl-filter }}\" ]]; then\n    echo \"STACKCTL_FILTER=${{ inputs.stackctl-filter }}\"\n    echo \"STACKCTL_FILTERS=${{ inputs.stackctl-filter }}\"\n  fi\n\n} \u003e\u003e\"$GITHUB_ENV\"\n"},{"id":"set-tag","shell":"bash","run":"# Set tag output\ntag=${{ github.event.pull_request.head.sha }}\ntag=${tag:-${{ github.event.after }}}\ntag=${tag:-${{ github.sha }}}\necho \"tag=$tag\" \u003e\u003e\"$GITHUB_OUTPUT\"\n"},{"id":"set-cache","shell":"bash","run":"# Set cache path output and resource\napp=$PLATFORM_APP_DIRECTORY\napp=${app:-.}\necho \"cache=$app/.platform/cache\" \u003e\u003e\"$GITHUB_OUTPUT\"\n\nresource=$PLATFORM_RESOURCE\nresource=${resource:-all-resources}\necho \"resource=$resource\" \u003e\u003e\"$GITHUB_OUTPUT\"\n"},{"name":"Cache .platform/cache directory","uses":"actions/cache@v6","with":{"path":"${{ steps.set-cache.outputs.cache }}","key":"${{ runner.os }}-${{ github.job }}-${{ steps.set-cache.outputs.resource }}-${{ steps.set-tag.outputs.tag }}","restore-keys":"${{ runner.os }}-${{ github.job }}-${{ steps.set-cache.outputs.resource }}-\n${{ runner.os }}-${{ github.job }}-\n"}},{"shell":"bash","run":"# Configure Slack notification ENV\ntitle=\"Deploy\"\n\nif [[ -n \"$PLATFORM_APP_DIRECTORY\" ]] \u0026\u0026 [[ -n \"$PLATFORM_RESOURCE\" ]]; then\n  title+=\" $PLATFORM_APP_DIRECTORY/$PLATFORM_RESOURCE\"\nelif [[ -n \"$PLATFORM_APP_DIRECTORY\" ]]; then\n  title+=\" $PLATFORM_APP_DIRECTORY\"\nelif [[ -n \"$PLATFORM_RESOURCE\" ]]; then\n  title+=\" $PLATFORM_RESOURCE\"\nfi\n\nif [[ -n \"$PLATFORM_ENVIRONMENT\" ]]; then\n  title+=\" to $PLATFORM_ENVIRONMENT\"\nfi\n\ncat \u003c\u003cEOM \u003e\u003e\"$GITHUB_ENV\"\nSLACK_ICON=https://github.com/freckle-automation.png?size=48\nSLACK_USERNAME=GitHub Actions\nSLACK_TITLE=$title\nSLACK_FOOTER=${{ steps.set-tag.outputs.tag }}\nMSG_MINIMAL=actions url,commit\nEOM\n"},{"if":"${{ inputs.fetch-platform-yaml == 'true' }}","shell":"bash","run":"# Download .platform.yaml if necessary\nif [[ -e \"${PLATFORM_APP_DIRECTORY:-.}/.platform.yaml\" ]]; then\n  echo \"Skipping: .platform.yaml exists\"\n  exit 0\nfi\n\nif [[ \"$PLATFORM_APP_DIRECTORY\" == /* ]]; then\n  echo \"Skipping: \\$PLATFORM_APP_DIRECTORY is an absolute path\"\n  exit 0\nfi\n\nif [[ -n \"$PLATFORM_APP_DIRECTORY\" ]]; then\n  config=$PLATFORM_APP_DIRECTORY/.platform.yaml\nelse\n  config=.platform.yaml\nfi\n\nghpath=\"/repos/$GITHUB_REPOSITORY/contents/$config?ref=$TAG\"\necho \"Downloading $ghpath...\"\n\nmkdir -p \"$(dirname \"$config\")\"\ngh api \"$ghpath\" --jq '.content' | base64 -d \u003e\"$config\"\n","env":{"GH_TOKEN":"${{ github.token }}","GITHUB_REPOSITORY":"${{ github.repository }}","TAG":"${{ steps.set-tag.outputs.tag }}"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":43691701,"uuid":"331357965","full_name":"freckle/setup-platform-action","owner":"freckle","description":"GitHub Action to install the Freckle Platform CLI","archived":false,"fork":false,"pushed_at":"2026-08-20T09:49:32.000Z","size":171,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":11,"default_branch":"main","last_synced_at":"2026-09-08T21:11:59.725Z","etag":null,"topics":["ghvm-managed"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":false,"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/freckle.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-01-20T16:01:58.000Z","updated_at":"2026-08-20T09:52:09.000Z","dependencies_parsed_at":"2026-02-09T12:03:39.965Z","dependency_job_id":null,"html_url":"https://github.com/freckle/setup-platform-action","commit_stats":{"total_commits":48,"total_committers":1,"mean_commits":48.0,"dds":0.0,"last_synced_commit":"7786888ebea1009126d2527325e35b526b3141e3"},"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"purl":"pkg:github/freckle/setup-platform-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/freckle","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":341189360,"owners_count":37215245,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-08-22T15:14:58.755Z","status":"online","status_checked_at":"2026-09-11T02:00:05.857Z","response_time":56,"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":"freckle","name":"Freckle","uuid":"8933560","kind":"organization","description":"","email":"engineering@freckle.com","website":"https://www.freckle.com","location":"San Francisco, CA","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/8933560?v=4","repositories_count":62,"last_synced_at":"2023-03-30T14:28:05.963Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/freckle","funding_links":[],"total_stars":null,"followers":null,"following":null,"created_at":"2022-11-04T06:53:09.171Z","updated_at":"2023-03-30T14:28:06.606Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/freckle","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/freckle/repositories"},"tags":[{"name":"v7","sha":"ccbed1187d4969a196fb7d9157c7461ed84101e5","kind":"commit","published_at":"2026-07-20T14:27:42.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7","dependencies_parsed_at":"2026-08-08T08:23:04.716Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7/manifests"},{"name":"v7.10.2","sha":"ccbed1187d4969a196fb7d9157c7461ed84101e5","kind":"commit","published_at":"2026-07-20T14:27:42.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.10.2","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.10.2","dependencies_parsed_at":"2026-08-08T08:23:04.623Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.2/manifests"},{"name":"v7.10.1","sha":"6e588477dce5cd2539232dcab1e8c159b709218f","kind":"commit","published_at":"2026-07-20T14:02:24.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.10.1","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.10.1","dependencies_parsed_at":"2026-08-08T08:23:04.705Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.1/manifests"},{"name":"v7.10.1-rc-semantic-release.2","sha":"f6600c690e1822ba339a4bd1dad2a63799410b15","kind":"commit","published_at":"2026-07-16T15:25:37.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.10.1-rc-semantic-release.2","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.10.1-rc-semantic-release.2","dependencies_parsed_at":"2026-08-08T08:23:04.719Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.10.1-rc-semantic-release.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.1-rc-semantic-release.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.1-rc-semantic-release.2/manifests"},{"name":"v7.10.1-rc-semantic-release.1","sha":"bd9748cba665233daa0775dec3ec86fc4b92e70a","kind":"commit","published_at":"2026-07-16T15:21:21.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.10.1-rc-semantic-release.1","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.10.1-rc-semantic-release.1","dependencies_parsed_at":"2026-08-08T08:23:04.694Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.10.1-rc-semantic-release.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.1-rc-semantic-release.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.1-rc-semantic-release.1/manifests"},{"name":"v7.10.0","sha":"5d1466d1f6c1eb29382f2139d93023dc19838ffe","kind":"tag","published_at":"2024-09-13T16:27:10.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.10.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.10.0","dependencies_parsed_at":"2024-09-16T05:21:50.780Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.10.0/manifests"},{"name":"v7.9.0","sha":"a31876f7a06f56cd49979f04e42a02e2e86b1c4e","kind":"tag","published_at":"2024-08-29T21:08:43.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.9.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.9.0","dependencies_parsed_at":"2024-08-31T04:13:17.165Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.9.0/manifests"},{"name":"v7.8.0","sha":"da377fb79b38078a19418de08be1fe99689ff4a0","kind":"tag","published_at":"2024-04-24T15:39:55.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.8.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.8.0","dependencies_parsed_at":"2024-04-26T04:27:02.095Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.8.0/manifests"},{"name":"v7.7.6","sha":"5c743d40b768c03d9ee2bd4f7549fb13a16b48d3","kind":"tag","published_at":"2024-03-01T18:08:39.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.7.6","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.7.6","dependencies_parsed_at":"2024-03-03T04:17:17.109Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.7.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.6/manifests"},{"name":"v7.7.5","sha":"bfbba0c1422d5f326cea8572cf6b53dfd25866a8","kind":"tag","published_at":"2024-01-29T18:29:23.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.7.5","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.7.5","dependencies_parsed_at":"2024-02-03T04:47:09.423Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.7.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.5/manifests"},{"name":"v7.7.4","sha":"1d5cfd149d3b5142df4c667c7bd13cd03f6e6f56","kind":"tag","published_at":"2024-01-11T14:38:42.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.7.4","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.7.4","dependencies_parsed_at":"2024-01-19T13:39:47.532Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.7.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.4/manifests"},{"name":"v7.7.3","sha":"a1f6e469d1d62d003e5afac62f02a0ed1808e985","kind":"tag","published_at":"2024-01-08T18:00:04.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.7.3","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.7.3","dependencies_parsed_at":"2024-01-19T13:39:47.519Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.7.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.3/manifests"},{"name":"v7.7.2","sha":"cb3d0fc66b3be3e9bb257e1a888484c2e7592e9f","kind":"tag","published_at":"2023-10-20T13:48:49.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.7.2","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.7.2","dependencies_parsed_at":"2023-10-22T04:25:57.850Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.7.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.2/manifests"},{"name":"v7.7.1","sha":"bda990fd3b439b544c1f4b5ae14733dc48dcd3ae","kind":"tag","published_at":"2023-10-04T19:32:59.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.7.1","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.7.1","dependencies_parsed_at":"2023-10-12T07:22:09.103Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.7.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.1/manifests"},{"name":"v7.7.0","sha":"c20e7e2355aebbe6f2395fea2064bf19b86737c1","kind":"tag","published_at":"2023-09-18T14:33:58.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.7.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.7.0","dependencies_parsed_at":"2023-09-23T05:36:29.293Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.7.0/manifests"},{"name":"v7.6.0","sha":"523e315b305db467b34342004c8d78ad6bd7e558","kind":"tag","published_at":"2023-09-01T12:58:27.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.6.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.6.0","dependencies_parsed_at":"2023-09-04T04:26:11.935Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.6.0/manifests"},{"name":"v7.5.2","sha":"75ec508e50ea5f8166eafea7c2cd6387bcbe0202","kind":"tag","published_at":"2023-08-31T20:47:01.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.5.2","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.5.2","dependencies_parsed_at":"2023-09-03T04:08:03.691Z","dependency_job_id":null,"purl":"pkg:github/freckle/setup-platform-action@v7.5.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.5.2/manifests"},{"name":"v7.5.1","sha":"9ca3ab0e24099601ff9d81447b48c635460f989f","kind":"tag","published_at":"2023-07-18T13:41:04.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.5.1","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.5.1","dependencies_parsed_at":"2023-07-20T04:09:50.714Z","dependency_job_id":"e9992cab-5407-4ebd-bfc8-11c63fffad57","purl":"pkg:github/freckle/setup-platform-action@v7.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.5.1/manifests"},{"name":"v7.5.0","sha":"34dc89c0711e1515b88b0d08a5fc7f879bd22220","kind":"tag","published_at":"2023-07-17T18:34:03.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.5.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.5.0","dependencies_parsed_at":"2023-07-19T04:07:52.010Z","dependency_job_id":"9d2caa50-21d5-4b96-ab36-3f9c403039bd","purl":"pkg:github/freckle/setup-platform-action@v7.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.5.0/manifests"},{"name":"v7.4.0","sha":"df3d758da2efaa7210973f8780c8fdc5176d3d46","kind":"tag","published_at":"2023-07-12T16:44:33.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.4.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.4.0","dependencies_parsed_at":"2023-07-15T04:04:14.247Z","dependency_job_id":"9c0e9f39-9e4c-4ed5-84b6-458a31486520","purl":"pkg:github/freckle/setup-platform-action@v7.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.4.0/manifests"},{"name":"v7.3.1","sha":"7786888ebea1009126d2527325e35b526b3141e3","kind":"tag","published_at":"2023-03-07T21:46:52.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.3.1","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.3.1","dependencies_parsed_at":"2023-06-02T11:04:33.109Z","dependency_job_id":"385ad8e3-e767-49ba-9e45-a9d8106cc680","purl":"pkg:github/freckle/setup-platform-action@v7.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.3.1/manifests"},{"name":"v7.3.0","sha":"aad5668949063c9543f45e7c8ff7ac7124a8e0f5","kind":"tag","published_at":"2023-02-28T19:46:17.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.3.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.3.0","dependencies_parsed_at":"2023-06-02T11:04:33.388Z","dependency_job_id":"54861250-b8ed-4a27-b420-42afa052e43a","purl":"pkg:github/freckle/setup-platform-action@v7.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.3.0/manifests"},{"name":"v7.2.1","sha":"aad5668949063c9543f45e7c8ff7ac7124a8e0f5","kind":"tag","published_at":"2023-02-02T17:16:06.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.2.1","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.2.1","dependencies_parsed_at":"2023-06-02T10:48:49.835Z","dependency_job_id":"d4d12eb8-5ac0-4a80-aa9c-c03de2832c0c","purl":"pkg:github/freckle/setup-platform-action@v7.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.2.1/manifests"},{"name":"v7.2.0","sha":"fa6eeb93ce75770112359b6b33c41040b5be34d3","kind":"tag","published_at":"2023-01-30T18:54:20.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.2.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.2.0","dependencies_parsed_at":"2023-06-02T10:48:50.020Z","dependency_job_id":"e67b40e9-7bc0-43a4-b0c0-5cd0de949ead","purl":"pkg:github/freckle/setup-platform-action@v7.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.2.0/manifests"},{"name":"v7.1.0","sha":"2fc5df266024c426a01510da4f6dea7225f0282a","kind":"tag","published_at":"2023-01-24T20:23:27.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.1.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.1.0","dependencies_parsed_at":"2023-06-02T10:48:50.273Z","dependency_job_id":"92ca4da6-8f7b-489e-8f40-38326a3caa0b","purl":"pkg:github/freckle/setup-platform-action@v7.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.1.0/manifests"},{"name":"v7.0.1","sha":"74605f24b2d105b6e73f1ec396c1d3c6c15aee15","kind":"tag","published_at":"2023-01-24T16:55:44.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.0.1","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.0.1","dependencies_parsed_at":"2023-06-02T10:48:50.474Z","dependency_job_id":"e3439517-dec2-448f-88a7-69071d74e18a","purl":"pkg:github/freckle/setup-platform-action@v7.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.0.1/manifests"},{"name":"v7.0.0","sha":"cbc022a4e7389ead8d2918cddbd8c78a78e749e6","kind":"tag","published_at":"2023-01-23T22:50:25.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v7.0.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v7.0.0","dependencies_parsed_at":"2023-06-02T10:48:50.694Z","dependency_job_id":"cd1ea3f8-e6e7-4864-852f-95682a9d7a85","purl":"pkg:github/freckle/setup-platform-action@v7.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v7.0.0/manifests"},{"name":"v6.0.3","sha":"d817a7e08fed3642f7e015773d0009af3076eda9","kind":"tag","published_at":"2022-11-22T20:39:05.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v6.0.3","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v6.0.3","dependencies_parsed_at":"2023-06-02T10:48:50.962Z","dependency_job_id":"e0c53c9b-24b4-4c64-b8cd-7a10a5e852de","purl":"pkg:github/freckle/setup-platform-action@v6.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v6.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v6.0.3/manifests"},{"name":"v6.0.2","sha":"5b39f5e409087512eec48dc831a03d2cbe8ad874","kind":"tag","published_at":"2022-10-24T13:15:19.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v6.0.2","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v6.0.2","dependencies_parsed_at":"2023-06-02T10:48:51.178Z","dependency_job_id":"5b90402c-6d74-44fd-9291-38f506af9ada","purl":"pkg:github/freckle/setup-platform-action@v6.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v6.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v6.0.2/manifests"},{"name":"v6.0.1","sha":"5b2f4fe152de346cd3e3706178578f472eca2aaa","kind":"tag","published_at":"2022-08-30T18:33:44.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v6.0.1","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v6.0.1","dependencies_parsed_at":"2023-05-31T15:07:54.695Z","dependency_job_id":"5a606010-647b-4aec-adbe-517d5fd82539","purl":"pkg:github/freckle/setup-platform-action@v6.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v6.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v6.0.1/manifests"},{"name":"v6.0.0","sha":"d07a3fc223eb71fe1a7cf64e77a0296f64c2b06d","kind":"tag","published_at":"2022-02-23T13:49:22.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v6.0.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v6.0.0","dependencies_parsed_at":"2023-05-31T15:07:55.041Z","dependency_job_id":"e2cd9c7d-a9dd-4480-bdcf-9a6e3f09b7d9","purl":"pkg:github/freckle/setup-platform-action@v6.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v6.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v6.0.0/manifests"},{"name":"v5.0.0","sha":"5f6e6ce85b5c3ce3f1d380b9a1b6d4f7c9ff656e","kind":"tag","published_at":"2022-02-22T18:34:02.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v5.0.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v5.0.0","dependencies_parsed_at":"2023-05-31T15:07:55.364Z","dependency_job_id":"1b162f43-2053-481e-9562-3a3a01432f67","purl":"pkg:github/freckle/setup-platform-action@v5.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v5.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v5.0.0/manifests"},{"name":"v4.0.0","sha":"fcc9625e30ccebce8beab1f81c7c1ce59868ac63","kind":"tag","published_at":"2022-01-18T16:11:34.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v4.0.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v4.0.0","dependencies_parsed_at":"2023-05-31T15:07:55.716Z","dependency_job_id":"414656bb-3199-4a16-9f9b-711a2c5389b2","purl":"pkg:github/freckle/setup-platform-action@v4.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v4.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v4.0.0/manifests"},{"name":"v3.0.0","sha":"d6e092a2f6acedb2e650d573d05cc66a0dc6a8ed","kind":"tag","published_at":"2022-01-18T16:11:28.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v3.0.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v3.0.0","dependencies_parsed_at":"2023-05-31T15:07:55.886Z","dependency_job_id":"8aa45c4d-1720-48fa-90a2-239b7bbef915","purl":"pkg:github/freckle/setup-platform-action@v3.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v3.0.0/manifests"},{"name":"v2.0.0","sha":"8a6fa262d8770f1894594afaf9c0e54ba9b3aa9a","kind":"tag","published_at":"2022-01-18T16:11:24.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v2.0.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v2.0.0","dependencies_parsed_at":"2023-05-31T15:07:55.972Z","dependency_job_id":"02687cfd-fab4-444f-883d-d267b1b996ff","purl":"pkg:github/freckle/setup-platform-action@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v2.0.0/manifests"},{"name":"v1.0.0","sha":"705cbd5a51c14372193e95b861ce7c8114083885","kind":"tag","published_at":"2022-01-18T16:11:13.000Z","download_url":"https://codeload.github.com/freckle/setup-platform-action/tar.gz/v1.0.0","html_url":"https://github.com/freckle/setup-platform-action/releases/tag/v1.0.0","dependencies_parsed_at":"2023-05-31T15:07:56.157Z","dependency_job_id":"f3d0e0f3-33ad-4f8c-8b10-5f4fe154eed6","purl":"pkg:github/freckle/setup-platform-action@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2026-09-11T10:24:03.366Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":2,"rankings":{"downloads":null,"dependent_repos_count":20.602123276818254,"dependent_packages_count":0.0,"stargazers_count":48.363175408017746,"forks_count":35.17033750594201,"docker_downloads_count":null,"average":26.0339090476945},"purl":"pkg:githubactions/freckle/setup-platform-action","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/freckle/setup-platform-action","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/freckle/setup-platform-action","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/freckle/setup-platform-action/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2026-09-10T22:01:06.369Z","issues_count":1,"pull_requests_count":118,"avg_time_to_close_issue":22479.0,"avg_time_to_close_pull_request":654535.4298245613,"issues_closed_count":1,"pull_requests_closed_count":114,"pull_request_authors_count":8,"issue_authors_count":1,"avg_comments_per_issue":1.0,"avg_comments_per_pull_request":0.864406779661017,"merged_pull_requests_count":89,"bot_issues_count":1,"bot_pull_requests_count":73,"past_year_issues_count":0,"past_year_pull_requests_count":14,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":124075.42857142857,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":14,"past_year_pull_request_authors_count":3,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":0.2857142857142857,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":12,"past_year_merged_pull_requests_count":14,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/freckle%2Fsetup-platform-action/issues","maintainers":[{"login":"pbrisbin","count":24,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/pbrisbin"},{"login":"freckle-automation","count":16,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/freckle-automation"},{"login":"joris974","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/joris974"},{"login":"stackptr","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/stackptr"}],"active_maintainers":[{"login":"pbrisbin","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/pbrisbin"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/freckle%2Fsetup-platform-action/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/freckle%2Fsetup-platform-action/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/freckle%2Fsetup-platform-action/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/freckle%2Fsetup-platform-action/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/freckle%2Fsetup-platform-action/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/freckle%2Fsetup-platform-action/codemeta","maintainers":[]}