{"id":7748101,"name":"StartAutomating/PS3D","ecosystem":"actions","description":"Generate 3D Objects using PS3D and OpenSCAD","homepage":null,"licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/StartAutomating/PS3D","keywords_array":[],"namespace":"StartAutomating","versions_count":1,"first_release_published_at":"2022-04-25T05:47:11.000Z","latest_release_published_at":"2022-04-25T05:47:11.000Z","latest_release_number":"v0.1","last_synced_at":"2026-03-27T16:01:12.816Z","created_at":"2023-05-17T11:39:43.513Z","updated_at":"2026-03-27T16:01:12.816Z","registry_url":"https://github.com/StartAutomating/PS3D","install_command":null,"documentation_url":null,"metadata":{"name":"Out-PS3D","description":"Generate 3D Objects using PS3D and OpenSCAD","inputs":{"PS3DScript":{"required":false,"description":"A PowerShell Script that uses PS3D.  \nAny files outputted from the script will be added to the repository.\nIf those files have a .Message attached to them, they will be committed with that message.\n"},"SkipPS3DPS1":{"required":false,"description":"If set, will not process any files named *.PS3D.ps1"},"CommitMessage":{"required":false,"description":"If provided, will commit any remaining changes made to the workspace with this commit message.\nIf no commit message is provided, changes will not be committed.\n"},"UserEmail":{"required":false,"description":"The user email associated with a git commit."},"UserName":{"required":false,"description":"The user name associated with a git commit."}},"branding":{"icon":"box","color":"blue"},"outputs":{"PS3DScriptRuntime":{"description":"The time it took the .PS3DScript parameter to run","value":"${{steps.PS3DAction.outputs.PS3DScriptRuntime}}"},"PS3DPS1Runtime":{"description":"The time it took all .PS3D.ps1 files to run","value":"${{steps.PS3DAction.outputs.PS3DPS1Runtime}}"},"PS3DPS1Files":{"description":"The .PS3D.ps1 files that were run (separated by semicolons)","value":"${{steps.PS3DAction.outputs.PS3DPS1Files}}"},"PS3DPS1Count":{"description":"The number of .PS3D.ps1 files that were run","value":"${{steps.PS3DAction.outputs.PS3DPS1Count}}"}},"runs":{"using":"composite","steps":[{"name":"PS3DAction","id":"PS3DAction","shell":"pwsh","env":{"PS3DScript":"${{inputs.PS3DScript}}","SkipPS3DPS1":"${{inputs.SkipPS3DPS1}}","CommitMessage":"${{inputs.CommitMessage}}","UserEmail":"${{inputs.UserEmail}}","UserName":"${{inputs.UserName}}"},"run":"$Parameters = @{}\n$Parameters.PS3DScript = ${env:PS3DScript}\n$Parameters.SkipPS3DPS1 = ${env:SkipPS3DPS1}\n$Parameters.SkipPS3DPS1 = $parameters.SkipPS3DPS1 -match 'true';\n$Parameters.CommitMessage = ${env:CommitMessage}\n$Parameters.UserEmail = ${env:UserEmail}\n$Parameters.UserName = ${env:UserName}\nforeach ($k in @($parameters.Keys)) {\n    if ([String]::IsNullOrEmpty($parameters[$k])) {\n        $parameters.Remove($k)\n    }\n}\nWrite-Host \"::debug:: PS3DAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for PS3D\n.Description\n    GitHub Action for PS3D.  This will:\n\n    * Import PS3D\n    * Run all *.PS3D.ps1 files beneath the workflow directory\n    * Run a .PS3DScript parameter\n\n    Any files changed can be outputted by the script, and those changes can be checked back into the repo.\n    Make sure to use the \"persistCredentials\" option with checkout.\n#\u003e\n\nparam(\n# A PowerShell Script that uses PS3D.  \n# Any files outputted from the script will be added to the repository.\n# If those files have a .Message attached to them, they will be committed with that message.\n[string]\n$PS3DScript,\n\n# If set, will not process any files named *.PS3D.ps1\n[switch]\n$SkipPS3DPS1,\n\n# If provided, will commit any remaining changes made to the workspace with this commit message.\n# If no commit message is provided, changes will not be committed.\n[string]\n$CommitMessage,\n\n# The user email associated with a git commit.\n[string]\n$UserEmail,\n\n# The user name associated with a git commit.\n[string]\n$UserName\n)\n\n\"::group::Parameters\" | Out-Host\n[PSCustomObject]$PSBoundParameters | Format-List | Out-Host\n\"::endgroup::\" | Out-Host\n\n\nif ($PSVersionTable.Platform -eq 'Unix') {\n    $openScadInPath =  $ExecutionContext.SessionState.InvokeCommand.GetCommand('openscad', 'Application')\n    if (-not $openScadInPath -and $env:GITHUB_WORKFLOW) {\n        \"::group::Installing OpenSCAD\" | Out-Host\n        Set-Location $GITHUB_WORKSPACE\n        wget https://files.openscad.org/OpenSCAD-2021.01-x86_64.AppImage\n        sudo mv OpenSCAD-2021.01*-x86_64.AppImage /usr/local/bin/openscad\n        sudo chmod +x /usr/local/bin/openscad\n        \"::endgroup::\" | Out-Host\n    }\n}\n\nif ($env:GITHUB_ACTION_PATH) {\n    $PS3DModulePath = Join-Path $env:GITHUB_ACTION_PATH 'PS3D.psd1'\n    if (Test-path $PS3DModulePath) {\n        Import-Module $PS3DModulePath -Force -PassThru | Out-String\n    } else {\n        throw \"PS3D not found\"\n    }\n} elseif (-not (Get-Module PS3D)) {    \n    throw \"Action Path not found\"\n}\n\n\"::notice title=ModuleLoaded::PS3D Loaded from Path - $($PS3DModulePath)\" | Out-Host\n\n$anyFilesChanged = $false\n$processScriptOutput = { process { \n    $out = $_\n    $outItem = Get-Item -Path $out -ErrorAction SilentlyContinue\n    $fullName, $shouldCommit = \n        if ($out -is [IO.FileInfo]) {\n            $out.FullName, (git status $out.Fullname -s)\n        } elseif ($outItem) {\n            $outItem.FullName, (git status $outItem.Fullname -s)\n        }\n    if ($shouldCommit) {\n        git add $fullName\n        if ($out.Message) {\n            git commit -m \"$($out.Message)\"\n        } elseif ($out.CommitMessage) {\n            git commit -m \"$($out.CommitMessage)\"\n        }\n        $anyFilesChanged = $true\n    }\n    $out\n} }\n\n\nif (-not $UserName) { $UserName = $env:GITHUB_ACTOR }\nif (-not $UserEmail) { $UserEmail = \"$UserName@github.com\" }\ngit config --global user.email $UserEmail\ngit config --global user.name  $UserName\n\nif (-not $env:GITHUB_WORKSPACE) { throw \"No GitHub workspace\" }\n\ngit pull | Out-Host\n\n$PS3DScriptStart = [DateTime]::Now\nif ($PS3DScript) {\n    Invoke-Expression -Command $PS3DScript |\n        . $processScriptOutput |\n        Out-Host\n}\n$PS3DScriptTook = [Datetime]::Now - $PS3DScriptStart\n\"::set-output name=PS3DScriptRuntime::$($PS3DScriptTook.TotalMilliseconds)\"   | Out-Host\n\n$PS3DPS1Start = [DateTime]::Now\n$PS3DPS1List  = @()\nif (-not $SkipPS3DPS1) {\n    $PS3DFiles = @(\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n        Where-Object Name -Match '\\.PS3D\\.ps1$')\n        \n    if ($PS3DFiles) {\n        $PS3DFiles|        \n        ForEach-Object {\n            $PS3DPS1List += $_.FullName.Replace($env:GITHUB_WORKSPACE, '').TrimStart('/')\n            $PS3DPS1Count++\n            \"::notice title=Running::$($_.Fullname)\" | Out-Host\n            . $_.FullName |            \n                . $processScriptOutput  | \n                Out-Host\n        }\n    }\n}\n\n$PS3DPS1EndStart = [DateTime]::Now\n$PS3DPS1Took = [Datetime]::Now - $PS3DPS1Start\n\"::set-output name=PS3DPS1Count::$($PS3DPS1List.Length)\"   | Out-Host\n\"::set-output name=PS3DPS1Files::$($PS3DPS1List -join ';')\"   | Out-Host\n\"::set-output name=PS3DPS1Runtime::$($PS3DPS1Took.TotalMilliseconds)\"   | Out-Host\nif ($CommitMessage -or $anyFilesChanged) {\n    if ($CommitMessage) {\n        dir $env:GITHUB_WORKSPACE -Recurse |\n            ForEach-Object {\n                $gitStatusOutput = git status $_.Fullname -s\n                if ($gitStatusOutput) {\n                    git add $_.Fullname\n                }\n            }\n\n        git commit -m $ExecutionContext.SessionState.InvokeCommand.ExpandString($CommitMessage)\n    }    \n\n    $checkDetached = git symbolic-ref -q HEAD\n    if (-not $LASTEXITCODE) {\n        \"::notice::Pushing Changes\" | Out-Host\n        git push        \n        \"Git Push Output: $($gitPushed  | Out-String)\"\n    } else {\n        \"::notice::Not pushing changes (on detached head)\" | Out-Host\n        $LASTEXITCODE = 0\n        exit 0\n    }\n}\n} @Parameters\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":41876861,"uuid":"485222610","full_name":"StartAutomating/PS3D","owner":"StartAutomating","description":"PowerShell Tools for 3D Printing","archived":false,"fork":false,"pushed_at":"2024-06-29T21:07:56.000Z","size":220,"stargazers_count":4,"open_issues_count":76,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-19T19:00:02.454Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","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/StartAutomating.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-25T04:29:34.000Z","updated_at":"2025-08-21T00:55:05.000Z","dependencies_parsed_at":"2024-05-16T07:25:55.976Z","dependency_job_id":"2d961ee9-21fe-4705-96f8-f1967363c1c1","html_url":"https://github.com/StartAutomating/PS3D","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/StartAutomating/PS3D","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPS3D","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPS3D/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPS3D/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPS3D/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","download_url":"https://codeload.github.com/StartAutomating/PS3D/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPS3D/sbom","scorecard":{"id":133871,"data":{"date":"2025-08-11","repo":{"name":"github.com/StartAutomating/PS3D","commit":"aa0f05d928bb801d740f2545a6dec43b5550627b"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":3.7,"checks":[{"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":"Code-Review","score":0,"reason":"Found 0/3 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":"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":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/RunEZOut.yml:11: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PS3D/RunEZOut.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/RunEZOut.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PS3D/RunEZOut.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PS3D/TestAndPublish.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:120: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PS3D/TestAndPublish.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:191: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PS3D/TestAndPublish.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:201: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PS3D/TestAndPublish.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/UpdateDocs.yml:11: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PS3D/UpdateDocs.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/UpdateDocs.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PS3D/UpdateDocs.yml/main?enable=pin","Info:   0 out of   6 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   2 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":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/RunEZOut.yml:1","Warn: no topLevel permission defined: .github/workflows/TestAndPublish.yml:1","Warn: no topLevel permission defined: .github/workflows/UpdateDocs.yml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: MIT License: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"SAST","score":-1,"reason":"internal error: internal error: Client.Checks.ListCheckRunsForRef: error during graphqlHandler.setupCheckRuns: Something went wrong while executing your query on 2025-08-12T14:07:24Z. Please include `A4E2:1E666C:5B40E5:123935D:689B4A9C` when reporting this issue.","details":null,"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":0,"reason":"branch protection not enabled on development/release branches","details":["Warn: branch protection not enabled for branch 'main'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"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"}}]},"last_synced_at":"2025-08-16T05:52:41.813Z","repository_id":41876861,"created_at":"2025-08-16T05:52:41.813Z","updated_at":"2025-08-16T05:52:41.813Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276229714,"owners_count":25606949,"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-21T02:00:07.055Z","response_time":72,"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":"StartAutomating","name":"James Brundage","uuid":"1043665","kind":"user","description":"Microsoft MVP in Azure / PowerShell","email":"","website":"https://startautomating.com/","location":"Seattle, WA","twitter":"jamesbru","company":"Start-Automating","icon_url":"https://avatars.githubusercontent.com/u/1043665?u=b41e97d22588b62d84e4c23da451c7cc93303a39\u0026v=4","repositories_count":66,"last_synced_at":"2025-09-14T13:44:41.125Z","metadata":{"has_sponsors_listing":true},"html_url":"https://github.com/StartAutomating","funding_links":["https://github.com/sponsors/StartAutomating"],"total_stars":1292,"followers":511,"following":54,"created_at":"2022-11-08T04:14:46.274Z","updated_at":"2025-09-14T13:44:41.125Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating/repositories"},"tags":[{"name":"v0.1","sha":"8c21297371f6548280af4071776a1bab00041f40","kind":"tag","published_at":"2022-04-25T05:47:11.000Z","download_url":"https://codeload.github.com/StartAutomating/PS3D/tar.gz/v0.1","html_url":"https://github.com/StartAutomating/PS3D/releases/tag/v0.1","dependencies_parsed_at":"2023-05-31T09:28:58.653Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PS3D@v0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPS3D/tags/v0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPS3D/tags/v0.1/manifests"}]},"repo_metadata_updated_at":"2025-09-21T10:41:35.583Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":40.26221692491061,"dependent_packages_count":0.0,"stargazers_count":27.664104867418573,"forks_count":35.22640316731543,"docker_downloads_count":null,"average":25.788181239911154},"purl":"pkg:githubactions/StartAutomating/PS3D","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/PS3D","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/PS3D","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/PS3D/dependencies","status":null,"funding_links":["https://github.com/sponsors/StartAutomating"],"critical":null,"issue_metadata":{"last_synced_at":"2025-04-10T09:49:10.100Z","issues_count":142,"pull_requests_count":2,"avg_time_to_close_issue":4398.222222222223,"avg_time_to_close_pull_request":267.0,"issues_closed_count":18,"pull_requests_closed_count":2,"pull_request_authors_count":1,"issue_authors_count":1,"avg_comments_per_issue":0.0,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":2,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":124,"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":1,"past_year_avg_comments_per_issue":0.0,"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/startautomating%2Fps3d/issues","maintainers":[{"login":"StartAutomating","count":84,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}],"active_maintainers":[{"login":"StartAutomating","count":6,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPS3D/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPS3D/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPS3D/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPS3D/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPS3D/codemeta","maintainers":[]}