{"id":7747203,"name":"StartAutomating/PSDevOps","ecosystem":"actions","description":"PowerShell Tools for DevOps (including a PowerShell wrapper for the GitHub REST API)","homepage":"https://psdevops.start-automating.com","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/StartAutomating/PSDevOps","keywords_array":["azure-devops","devops","github-actions","github-workflow","pipeline","powershell"],"namespace":"StartAutomating","versions_count":6,"first_release_published_at":"2021-09-28T06:06:12.000Z","latest_release_published_at":"2022-11-01T06:49:19.000Z","latest_release_number":"v0.5.9","last_synced_at":"2026-03-11T08:18:59.333Z","created_at":"2023-05-17T11:20:06.861Z","updated_at":"2026-03-11T08:18:59.333Z","registry_url":"https://github.com/StartAutomating/PSDevOps","install_command":null,"documentation_url":null,"metadata":{"name":"UsePSDevOps","description":"PowerShell Tools for DevOps (including a PowerShell wrapper for the GitHub REST API)","inputs":{"PSDevOpsScript":{"required":false,"description":"A PowerShell Script that uses PSDevOps.  \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"},"SkipPSDevOpsPS1":{"required":false,"description":"If set, will not process any files named *.PSDevOps.ps1"},"GitHubToken":{"required":false,"description":"If provided, will use this GitHubToken when running Connect-GitHub"},"Parameter":{"required":false},"CommitMessage":{"required":false,"description":"If provided, will commit any remaining changes made to the workspace with this commit message."},"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":"activity","color":"blue"},"runs":{"using":"composite","steps":[{"name":"PSDevOpsAction","id":"PSDevOpsAction","shell":"pwsh","env":{"GitHubToken":"${{inputs.GitHubToken}}","UserEmail":"${{inputs.UserEmail}}","SkipPSDevOpsPS1":"${{inputs.SkipPSDevOpsPS1}}","Parameter":"${{inputs.Parameter}}","PSDevOpsScript":"${{inputs.PSDevOpsScript}}","UserName":"${{inputs.UserName}}","CommitMessage":"${{inputs.CommitMessage}}"},"run":"$Parameters = @{}\n$Parameters.PSDevOpsScript = ${env:PSDevOpsScript}\n$Parameters.SkipPSDevOpsPS1 = ${env:SkipPSDevOpsPS1}\n$Parameters.SkipPSDevOpsPS1 = $parameters.SkipPSDevOpsPS1 -match 'true';\n$Parameters.GitHubToken = ${env:GitHubToken}\n$Parameters.Parameter = ${env:Parameter}\n$Parameters.Parameter = ConvertFrom-JSON @\"\n$($Parameters.Parameter)\n\"@\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:: PSDevOpsAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for PSDevOps\n.Description\n    GitHub Action for PSDevOps.  This will:\n\n    * Import PSDevOps and Connect-GitHub (giving easy access to every GitHub API)\n    * Run all *.PSDevOps.ps1 files beneath the workflow directory\n    * Run a .PSDevOpsScript parameter.\n\n\n    If you will be making changes using the GitHubAPI, you should provide a -GitHubToken\n    If none is provided, and ENV:GITHUB_TOKEN is set, this will be used instead.\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\n#\u003e\n\nparam(\n# A PowerShell Script that uses PSDevOps.  \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$PSDevOpsScript,\n\n# If set, will not process any files named *.PSDevOps.ps1\n[switch]\n$SkipPSDevOpsPS1,\n\n# If provided, will use this GitHubToken when running Connect-GitHub\n[string]\n$GitHubToken,\n\n[PSObject]\n$Parameter,\n\n# If provided, will commit any remaining changes made to the workspace with this commit message.\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#region Initial Logging\n\n# Output the parameters passed to this script (for debugging)\n\"::group::Parameters\" | Out-Host\n[PSCustomObject]$PSBoundParameters | Format-List | Out-Host\n\"::endgroup::\" | Out-Host\n\n# Get the GitHub Event\n$gitHubEvent = \n    if ($env:GITHUB_EVENT_PATH) {\n        [IO.File]::ReadAllText($env:GITHUB_EVENT_PATH) | ConvertFrom-Json\n    } else { $null }\n\n# Log the GitHub Event\n@\"\n::group::GitHubEvent\n$($gitHubEvent | ConvertTo-Json -Depth 100)\n::endgroup::\n\"@ | Out-Host\n\n# Check that there is a workspace (and throw if there is not)\nif (-not $env:GITHUB_WORKSPACE) { throw \"No GitHub workspace\" }\n\n#endregion Initial Logging\n\n# Check to ensure we are on a branch\n$branchName = git rev-parse --abrev-ref HEAD\n# If we were not, return.\nif (-not $branchName) {\n    \"::warning::Not on a branch\" | Out-Host\n    return\n}\n\n#region Configure UserName and Email\nif (-not $UserName)  {\n    $UserName =  \n        if ($env:GITHUB_TOKEN) {\n            Invoke-RestMethod -uri \"https://api.github.com/user\" -Headers @{\n                Authorization = \"token $env:GITHUB_TOKEN\"\n            } |\n                Select-Object -First 1 -ExpandProperty name\n        } else {\n            $env:GITHUB_ACTOR\n        }\n}\n\nif (-not $UserEmail) { \n    $GitHubUserEmail = \n        if ($env:GITHUB_TOKEN) {\n            Invoke-RestMethod -uri \"https://api.github.com/user/emails\" -Headers @{\n                Authorization = \"token $env:GITHUB_TOKEN\"\n            } |\n                Select-Object -First 1 -ExpandProperty email\n        } else {''}\n    $UserEmail = \n        if ($GitHubUserEmail) {\n            $GitHubUserEmail\n        } else {\n            \"$UserName@github.com\"\n        }    \n}\ngit config --global user.email $UserEmail\ngit config --global user.name  $UserName\n#endregion Configure UserName and Email\n\ngit pull | Out-Host\n\n\n#region Load Action Module\n$ActionModuleName     = \"EZOut\"\n$ActionModuleFileName = \"$ActionModuleName.psd1\"\n\n# Try to find a local copy of the action's module.\n# This allows the action to use the current branch's code instead of the action's implementation.\n$PSD1Found = Get-ChildItem -Recurse -Filter \"*.psd1\" |\n    Where-Object Name -eq $ActionModuleFileName | \n    Select-Object -First 1\n\n$ActionModulePath, $ActionModule = \n    # If there was a .PSD1 found\n    if ($PSD1Found) {\n        $PSD1Found.FullName # import from there.\n        Import-Module $PSD1Found.FullName -Force -PassThru\n    } \n    # Otherwise, if we have a GITHUB_ACTION_PATH\n    elseif ($env:GITHUB_ACTION_PATH) \n    {\n        $actionModulePath = Join-Path $env:GITHUB_ACTION_PATH $ActionModuleFileName\n        if (Test-path $actionModulePath) {\n            $actionModulePath\n            Import-Module $actionModulePath -Force -PassThru\n        } else {\n            throw \"$actionModuleName not found\"\n        }\n    } \n    elseif (-not (Get-Module $ActionModuleName)) {\n        throw \"$actionModulePath could not be loaded.\"\n    }\n\n\"::notice title=ModuleLoaded::$actionModuleName Loaded from Path - $($actionModulePath)\" | Out-Host\n#endregion Load Action Module\n\n\n$anyFilesChanged = $false\nfilter ProcessScriptOutput {\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        } elseif ($gitHubEvent.head_commit.message) {\n            git commit -m \"$($gitHubEvent.head_commit.message)\"\n        }\n        $anyFilesChanged = $true\n    }\n    $out\n}\n\n#endregion Declare Functions and Variables\n\n$ght = \n    if ($GitHubToken) {\n        $GitHubToken\n    } elseif ($env:GITHUB_TOKEN) {\n        $env:GITHUB_TOKEN\n    }\n\"::group::Connecting to Github\" | Out-Host\n$connectStart = [DateTime]::now\nConnect-GitHub -PersonalAccessToken $GitHubToken -PassThru | \n    ForEach-Object { \n        $githubModule = $_\n        \"::notice title=Connected::Connect-GitHub finished - $($githubModule.ExportedCommands.Count) Commands Imported\" | Out-Host\n        $githubModule.ExportedCommands.Keys -join [Environment]::Newline | Out-Host        \n    } | \n    Out-Host\n\"::endgroup::\" | Out-Host\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$PSDevOpsScriptStart = [DateTime]::Now\nif ($PSDevOpsScript) {\n    Invoke-Expression -Command $PSDevOpsScript |\n        ProcessScriptOutput |\n        Out-Host\n}\n$PSDevOpsScriptTook = [Datetime]::Now - $PSDevOpsScriptStart\n# \"::set-output name=PSDevOpsScriptRuntime::$($PSDevOpsScriptTook.TotalMilliseconds)\"   | Out-Host\n\n$PSDevOpsPS1Start = [DateTime]::Now\n$PSDevOpsPS1List  = @()\nif (-not $SkipPSDevOpsPS1) {\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n        Where-Object Name -Match '\\.PSDevOps\\.ps1$' |\n        \n        ForEach-Object {\n            $PSDevOpsPS1List += $_.FullName.Replace($env:GITHUB_WORKSPACE, '').TrimStart('/')\n            $PSDevOpsPS1Count++\n            \"::notice title=Running::$($_.Fullname)\" | Out-Host\n            . $_.FullName |            \n                ProcessScriptOutput  | \n                Out-Host\n        }\n}\n$PSDevOpsPS1EndStart = [DateTime]::Now\n$PSDevOpsPS1Took = [Datetime]::Now - $PSDevOpsPS1Start\n# \"::set-output name=PSDevOpsPS1Count::$($PSDevOpsPS1List.Length)\"   | Out-Host\n# \"::set-output name=PSDevOpsPS1Files::$($PSDevOpsPS1List -join ';')\"   | Out-Host\n# \"::set-output name=PSDevOpsPS1Runtime::$($PSDevOpsPS1Took.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        $gitPushed = 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":"master","path":null},"repo_metadata":{"id":38288899,"uuid":"222329349","full_name":"StartAutomating/PSDevOps","owner":"StartAutomating","description":"PowerShell Tools for DevOps","archived":false,"fork":false,"pushed_at":"2024-09-15T21:37:14.000Z","size":1245,"stargazers_count":144,"open_issues_count":43,"forks_count":31,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-10-08T10:05:48.829Z","etag":null,"topics":["azure-devops","devops","github-actions","github-workflow","pipeline","powershell"],"latest_commit_sha":null,"homepage":"https://psdevops.start-automating.com","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":"2019-11-17T23:55:59.000Z","updated_at":"2025-10-06T09:29:31.000Z","dependencies_parsed_at":"2024-02-07T17:00:08.555Z","dependency_job_id":"a4221058-cd59-46a0-a3c3-98d56f902b1c","html_url":"https://github.com/StartAutomating/PSDevOps","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/StartAutomating/PSDevOps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","download_url":"https://codeload.github.com/StartAutomating/PSDevOps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/sbom","scorecard":{"id":133873,"data":{"date":"2025-08-04","repo":{"name":"github.com/StartAutomating/PSDevOps","commit":"df15e7849deb7612aaa55da6f5d45a79c6efb316"},"scorecard":{"version":"v5.2.1-28-gc1d103a9","commit":"c1d103a9bb9f635ec7260bf9aa0699466fa4be0e"},"score":3.4,"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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#maintained"}},{"name":"Code-Review","score":0,"reason":"Found 0/14 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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#cii-best-practices"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/OnIssue.yml:1","Warn: no topLevel permission defined: .github/workflows/TestAndPublish.yml:1","Warn: no topLevel permission defined: .github/workflows/TraceIssueClosed.yml:1","Warn: no topLevel permission defined: .github/workflows/TraceIssueComment.yml:1","Warn: no topLevel permission defined: .github/workflows/TraceIssueOpenedOrEdited.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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#token-permissions"}},{"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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#binary-artifacts"}},{"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/OnIssue.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PSDevOps/OnIssue.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/OnIssue.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PSDevOps/OnIssue.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:578: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PSDevOps/TestAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:580: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PSDevOps/TestAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:583: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PSDevOps/TestAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:585: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PSDevOps/TestAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:587: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PSDevOps/TestAndPublish.yml/master?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/PSDevOps/TestAndPublish.yml/master?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/PSDevOps/TestAndPublish.yml/master?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/PSDevOps/TestAndPublish.yml/master?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/PSDevOps/TestAndPublish.yml/master?enable=pin","Info:   0 out of   6 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   5 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#pinned-dependencies"}},{"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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#branch-protection"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 19 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#sast"}}]},"last_synced_at":"2025-08-16T05:52:43.522Z","repository_id":38288899,"created_at":"2025-08-16T05:52:43.523Z","updated_at":"2025-08-16T05:52:43.523Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002681,"owners_count":26083442,"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-10T02:00:06.843Z","response_time":62,"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-26T19:32:37.539Z","metadata":{"has_sponsors_listing":true},"html_url":"https://github.com/StartAutomating","funding_links":["https://github.com/sponsors/StartAutomating"],"total_stars":1292,"followers":512,"following":54,"created_at":"2022-11-08T04:14:46.274Z","updated_at":"2025-09-26T19:32:37.539Z","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.5.9","sha":"a57f88f802f98bae418173366156db5ed3bb46c9","kind":"tag","published_at":"2022-11-01T06:49:19.000Z","download_url":"https://codeload.github.com/StartAutomating/PSDevOps/tar.gz/v0.5.9","html_url":"https://github.com/StartAutomating/PSDevOps/releases/tag/v0.5.9","dependencies_parsed_at":"2023-06-02T00:41:27.261Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PSDevOps@v0.5.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.9/manifests"},{"name":"v0.5.8","sha":"27bc1cdaf4f32752e9799343c91a14ccd4a35960","kind":"tag","published_at":"2022-06-07T23:26:26.000Z","download_url":"https://codeload.github.com/StartAutomating/PSDevOps/tar.gz/v0.5.8","html_url":"https://github.com/StartAutomating/PSDevOps/releases/tag/v0.5.8","dependencies_parsed_at":"2023-05-31T09:00:50.479Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PSDevOps@v0.5.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.8/manifests"},{"name":"v0.5.7","sha":"d0608a13046502816434653c8e12fe864ca06003","kind":"tag","published_at":"2021-12-01T06:32:58.000Z","download_url":"https://codeload.github.com/StartAutomating/PSDevOps/tar.gz/v0.5.7","html_url":"https://github.com/StartAutomating/PSDevOps/releases/tag/v0.5.7","dependencies_parsed_at":"2023-05-31T09:00:51.065Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PSDevOps@v0.5.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.7/manifests"},{"name":"v0.5.6","sha":"1801fe3af6891dc3f069785b928e2d42405b227f","kind":"tag","published_at":"2021-11-07T21:08:51.000Z","download_url":"https://codeload.github.com/StartAutomating/PSDevOps/tar.gz/v0.5.6","html_url":"https://github.com/StartAutomating/PSDevOps/releases/tag/v0.5.6","dependencies_parsed_at":"2023-05-31T09:00:51.680Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PSDevOps@v0.5.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.6/manifests"},{"name":"v0.5.5.1","sha":"e0550ffb60952115f7face990035d71f5f53feb3","kind":"tag","published_at":"2021-10-13T05:41:13.000Z","download_url":"https://codeload.github.com/StartAutomating/PSDevOps/tar.gz/v0.5.5.1","html_url":"https://github.com/StartAutomating/PSDevOps/releases/tag/v0.5.5.1","dependencies_parsed_at":"2023-05-31T09:00:51.958Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PSDevOps@v0.5.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.5.1/manifests"},{"name":"v0.5.5","sha":"6390480076bba1763160c7f1d31aa20580f01782","kind":"tag","published_at":"2021-09-28T06:06:12.000Z","download_url":"https://codeload.github.com/StartAutomating/PSDevOps/tar.gz/v0.5.5","html_url":"https://github.com/StartAutomating/PSDevOps/releases/tag/v0.5.5","dependencies_parsed_at":"2023-05-31T09:00:52.318Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PSDevOps@v0.5.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSDevOps/tags/v0.5.5/manifests"}]},"repo_metadata_updated_at":"2025-10-10T04:29:28.600Z","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":1.9885607874434692,"forks_count":3.353198251887167,"docker_downloads_count":null,"average":11.40099399106031},"purl":"pkg:githubactions/StartAutomating/PSDevOps","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/PSDevOps","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/PSDevOps","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/PSDevOps/dependencies","status":null,"funding_links":["https://github.com/sponsors/StartAutomating"],"critical":null,"issue_metadata":{"last_synced_at":"2025-03-21T21:09:44.062Z","issues_count":53,"pull_requests_count":99,"avg_time_to_close_issue":4349295.369565218,"avg_time_to_close_pull_request":354800.7373737374,"issues_closed_count":46,"pull_requests_closed_count":99,"pull_request_authors_count":3,"issue_authors_count":15,"avg_comments_per_issue":1.2641509433962264,"avg_comments_per_pull_request":0.1717171717171717,"merged_pull_requests_count":95,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":1,"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%2Fpsdevops/issues","maintainers":[{"login":"StartAutomating","count":93,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}],"active_maintainers":[{"login":"StartAutomating","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSDevOps/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSDevOps/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSDevOps/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSDevOps/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSDevOps/codemeta","maintainers":[]}