{"id":6326599,"name":"StartAutomating/HelpOut","ecosystem":"actions","description":"Output Help for a PowerShell Module, using HelpOut","homepage":"https://helpout.start-automating.com","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/StartAutomating/HelpOut","keywords_array":["markdown","powershell","powershell-help","powershell-helper"],"namespace":"StartAutomating","versions_count":36,"first_release_published_at":"2022-04-22T04:12:32.000Z","latest_release_published_at":"2024-10-13T22:51:21.000Z","latest_release_number":"v0.5.5","last_synced_at":"2026-04-13T18:01:33.864Z","created_at":"2023-02-13T13:21:18.405Z","updated_at":"2026-04-13T18:01:33.864Z","registry_url":"https://github.com/StartAutomating/HelpOut","install_command":null,"documentation_url":null,"metadata":{"name":"OutputHelp","description":"Output Help for a PowerShell Module, using HelpOut","inputs":{"HelpOutScript":{"required":false,"description":"A PowerShell Script that uses HelpOut.  \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"},"SkipHelpOutPS1":{"required":false,"description":"If set, will not process any files named *.HelpOut.ps1"},"InstallModule":{"required":false,"description":"A list of modules to be installed from the PowerShell gallery before scripts run."},"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":"help-circle","color":"blue"},"runs":{"using":"composite","steps":[{"name":"HelpOutAction","id":"HelpOutAction","shell":"pwsh","env":{"UserName":"${{inputs.UserName}}","HelpOutScript":"${{inputs.HelpOutScript}}","InstallModule":"${{inputs.InstallModule}}","SkipHelpOutPS1":"${{inputs.SkipHelpOutPS1}}","UserEmail":"${{inputs.UserEmail}}","CommitMessage":"${{inputs.CommitMessage}}"},"run":"$Parameters = @{}\n$Parameters.HelpOutScript = ${env:HelpOutScript}\n$Parameters.SkipHelpOutPS1 = ${env:SkipHelpOutPS1}\n$Parameters.SkipHelpOutPS1 = $parameters.SkipHelpOutPS1 -match 'true';\n$Parameters.InstallModule = ${env:InstallModule}\n$Parameters.InstallModule = $parameters.InstallModule -split ';' -replace '^[''\"]' -replace  '[''\"]$'\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:: HelpOutAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for HelpOut\n.Description\n    GitHub Action for HelpOut.  This will:\n\n    * Import HelpOut\n    * Run all *.HelpOut.ps1 files beneath the workflow directory\n    * Run a .HelpOutScript 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 HelpOut.  \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$HelpOutScript,\n\n# If set, will not process any files named *.HelpOut.ps1\n[switch]\n$SkipHelpOutPS1,\n\n# A list of modules to be installed from the PowerShell gallery before scripts run.\n[string[]]\n$InstallModule = @(\"ugit\"),\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$gitHubEvent = if ($env:GITHUB_EVENT_PATH) {\n    [IO.File]::ReadAllText($env:GITHUB_EVENT_PATH) | ConvertFrom-Json\n} else { $null }\n\n@\"\n::group::GitHubEvent\n$($gitHubEvent | ConvertTo-Json -Depth 100)\n::endgroup::\n\"@ | Out-Host\n\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) -or $LASTEXITCODE) {\n    $LASTEXITCODE = 0\n    \"::warning title=No Branch Found::Not on a Branch.  Can not run.\" | Out-Host\n    exit 0\n    return\n}\n\n$repoRoot = (git rev-parse --show-toplevel *\u003e\u00261) -replace '/', [IO.Path]::DirectorySeparatorChar\n\n# Use ANSI rendering if available\nif ($PSStyle.OutputRendering) {\n    $PSStyle.OutputRendering = 'ANSI'\n}\n\n#region -InstallModule\nif ($InstallModule) {\n    \"::group::Installing Modules\" | Out-Host\n    foreach ($moduleToInstall in $InstallModule) {\n        $moduleInWorkspace = Get-ChildItem -Path $env:GITHUB_WORKSPACE -Recurse -File |\n            Where-Object Name -eq \"$($moduleToInstall).psd1\" |\n            Where-Object { \n                $(Get-Content $_.FullName -Raw) -match 'ModuleVersion'\n            }\n        if (-not $moduleInWorkspace) {\n            Install-Module $moduleToInstall -Scope CurrentUser -Force\n            Import-Module $moduleToInstall -Force -PassThru | Out-Host\n        }\n    }\n    \"::endgroup::\" | Out-Host\n}\n#endregion -InstallModule\n\n$PSD1Found = Get-ChildItem -Recurse -Filter \"*.psd1\" |\n    Where-Object Name -eq 'HelpOut.psd1' | \n    Select-Object -First 1\n\nif ($PSD1Found) {\n    $PipeScriptModulePath = $PSD1Found\n    Import-Module $PSD1Found -Force -PassThru | Out-Host\n} elseif ($env:GITHUB_ACTION_PATH) {\n    $HelpOutModulePath = Join-Path $env:GITHUB_ACTION_PATH 'HelpOut.psd1'\n    if (Test-path $HelpOutModulePath) {\n        Import-Module $HelpOutModulePath -Force -PassThru | Out-Host\n    } else {\n        throw \"HelpOut not found\"\n    }\n} elseif (-not (Get-Module HelpOut)) {    \n    throw \"Action Path not found\"\n}\n\n\"::notice title=ModuleLoaded::HelpOut Loaded from Path - $($HelpOutModulePath)\" | Out-Host\n\n$anyFilesChanged = $false\n$totalFilesOutputted = 0 \n$totalFilesChanged   = 0\n$filesOutputted      = @()\n$filesChanged        = @()\n\nfilter ProcessActionOutput {\n    $out = $_\n    \n    $outItem = Get-Item -Path $out -ErrorAction SilentlyContinue\n    \n    $totalFilesOutputted++\n    $fullName, $shouldCommit = \n        if ($out -is [IO.FileInfo]) {\n            if ($out.FullName -notlike \"$repoRoot*\") { return }\n            $out.FullName, (git status $out.Fullname -s)\n            $filesOutputted += $out\n        } elseif ($outItem) {\n            if ($outItem.FullName -notlike \"$repoRoot*\") { return }\n            $outItem.FullName, (git status $outItem.Fullname -s)\n            $filesOutputted += $outItem\n        }\n    if ($shouldCommit) {\n        git add $fullName\n        $filesChanged += $fullName\n        if ($out.Message) {\n            git commit -m \"$($out.Message)\" | Out-Host\n        } elseif ($out.CommitMessage) {\n            git commit -m \"$($out.CommitMessage)\" | Out-Host\n        }  elseif ($gitHubEvent.head_commit.message) {\n            git commit -m \"$($gitHubEvent.head_commit.message)\" | Out-Host\n        }\n        $anyFilesChanged = $true\n        $totalFilesChanged++\n    }\n    $out\n}\n\n\n\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\nif (-not $env:GITHUB_WORKSPACE) { throw \"No GitHub workspace\" }\n\n$checkDetached = git symbolic-ref -q HEAD\nif (-not $LASTEXITCODE) {\n    git pull | Out-Host\n}\n\n\n$HelpOutScriptStart = [DateTime]::Now\nif ($HelpOutScript) {\n    Invoke-Expression -Command $HelpOutScript |\n        . ProcessActionOutput |\n        Out-Host\n}\n$HelpOutScriptTook = [Datetime]::Now - $HelpOutScriptStart\n\n\"::notice title=Runtime::$($HelpOutScriptTook.TotalMilliseconds)\"   | Out-Host\n\n$HelpOutPS1Start = [DateTime]::Now\n$HelpOutPS1List  = @()\nif (-not $SkipHelpOutPS1) {\n    $HelpOutFiles = @(\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n        Where-Object Name -Match '\\.HelpOut\\.ps1$')\n        \n    if ($HelpOutFiles) {\n        $HelpOutFiles|        \n        ForEach-Object {\n            $HelpOutPS1List += $_.FullName.Replace($env:GITHUB_WORKSPACE, '').TrimStart('/')\n            $HelpOutPS1Count++\n            \"::notice title=Running::$($_.Fullname)\" | Out-Host\n            . $_.FullName |            \n                . ProcessActionOutput  | \n                Out-Host\n        }\n    }\n}\n\n$HelpOutPS1EndStart = [DateTime]::Now\n$HelpOutPS1Took = [Datetime]::Now - $HelpOutPS1Start\n\"Ran $($HelpOutPS1List.Length) Files in $($HelpOutPS1Took.TotalMilliseconds)\" | Out-Host\nif ($filesChanged) {\n    \"::group::$($filesOutputted.Length) files generated with $($filesChanged.Length) changes\" | Out-Host\n    $FilesChanged -join ([Environment]::NewLine) | Out-Host\n    \"::endgroup::\" | Out-Host\n} else {\n    \"$($filesOutputted.Length) files generated with no changes\"\n}\n\nif ($CommitMessage -or $anyFilesChanged) {\n    if ($CommitMessage) {\n        Get-ChildItem $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 2\u003e\u00261\n    if (-not $LASTEXITCODE) {\n        \"::group::Pulling Changes\" | Out-Host\n        git pull | Out-Host\n        \"::endgroup::\" | Out-Host\n        \"::group::Pushing Changes\" | Out-Host        \n        git push | Out-Host\n        \"::endgroup::\" | Out-Host\n    } else {\n        \"::warning title=Not pushing changes::(on detached head)\" | Out-Host\n        $LASTEXITCODE = 0\n        exit 0\n    }\n} else {\n    \"Nothing to commit in this build.\" | Out-Host\n    exit 0\n}\n} @Parameters\n"}]},"default_branch":"master","path":null},"repo_metadata":{"id":36985077,"uuid":"192608060","full_name":"StartAutomating/HelpOut","owner":"StartAutomating","description":"A Helpful Toolkit for Managing PowerShell Help","archived":false,"fork":false,"pushed_at":"2024-10-13T22:51:22.000Z","size":864,"stargazers_count":34,"open_issues_count":20,"forks_count":4,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-07T06:04:24.306Z","etag":null,"topics":["markdown","powershell","powershell-help","powershell-helper"],"latest_commit_sha":null,"homepage":"https://helpout.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":".github/FUNDING.yml","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},"funding":{"github":["StartAutomating"]}},"created_at":"2019-06-18T20:27:10.000Z","updated_at":"2025-10-06T09:28:05.000Z","dependencies_parsed_at":"2023-01-17T12:15:46.807Z","dependency_job_id":"a44c5b23-ccbe-44db-a97d-f446d28b957a","html_url":"https://github.com/StartAutomating/HelpOut","commit_stats":{"total_commits":902,"total_committers":3,"mean_commits":300.6666666666667,"dds":"0.24611973392461195","last_synced_commit":"171343855c1579d26402dc5be6466203b916c33e"},"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"purl":"pkg:github/StartAutomating/HelpOut","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/sbom","scorecard":{"id":133869,"data":{"date":"2025-08-11","repo":{"name":"github.com/StartAutomating/HelpOut","commit":"5e140153912a26a7138caf8de9780cf978520512"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":3.7,"checks":[{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/GitPub.yml:1","Warn: no topLevel permission defined: .github/workflows/TestReleaseAndPublish.yml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"Maintained","score":0,"reason":"0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Code-Review","score":0,"reason":"Found 0/1 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":"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":"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":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"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":"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":"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/GitPub.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/GitPub.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/GitPub.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/GitPub.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:574: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:576: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:579: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:581: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:584: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:591: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:594: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:602: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:608: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:614: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:622: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:32: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:119: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:187: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestReleaseAndPublish.yml:197: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/HelpOut/TestReleaseAndPublish.yml/master?enable=pin","Warn: containerImage not pinned by hash: Dockerfile:2","Info:   0 out of   6 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of  11 third-party GitHubAction dependencies pinned","Info:   0 out of   1 containerImage 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":"Branch-Protection","score":0,"reason":"branch protection not enabled on development/release branches","details":["Warn: branch protection not enabled for branch 'master'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"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:18:46Z. Please include `951A:ECB19:5B6B6F:1484197:689B4D40` 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"}}]},"last_synced_at":"2025-08-16T05:52:38.554Z","repository_id":36985077,"created_at":"2025-08-16T05:52:38.554Z","updated_at":"2025-08-16T05:52:38.554Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278740839,"owners_count":26037481,"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-07T02:00:06.786Z","response_time":59,"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.5","sha":"5e140153912a26a7138caf8de9780cf978520512","kind":"tag","published_at":"2024-10-13T22:51:21.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.5.5","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.5.5","dependencies_parsed_at":"2024-10-24T16:28:02.928Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.5.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.5/manifests"},{"name":"v0.5.4","sha":"00ffbe5388a78bc7d27e263978d928fcc85f746f","kind":"tag","published_at":"2024-10-12T23:49:45.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.5.4","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.5.4","dependencies_parsed_at":null,"dependency_job_id":"a2e86476-61ea-4d90-abd0-95c359818ba6","purl":"pkg:github/StartAutomating/HelpOut@v0.5.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.4/manifests"},{"name":"v0.5.3","sha":"4e9d2af3e75ca273d97d76ccc2372df07fb29821","kind":"tag","published_at":"2024-03-16T21:46:25.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.5.3","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.5.3","dependencies_parsed_at":"2024-03-17T12:17:59.412Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.5.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.3/manifests"},{"name":"v0.5.2","sha":"75e579f2112c710d449a068476134990c425b55c","kind":"tag","published_at":"2024-01-27T19:50:51.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.5.2","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.5.2","dependencies_parsed_at":"2024-01-29T04:11:09.334Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.5.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.2/manifests"},{"name":"v0.5.1","sha":"40c3dfa1e3731b05561487bc39ae96b8fb41829b","kind":"tag","published_at":"2023-11-17T21:56:31.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.5.1","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.5.1","dependencies_parsed_at":"2023-11-19T10:00:01.335Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5.1/manifests"},{"name":"v0.5","sha":"3b0eda89b06e9d5f1bb7d716fa8775a377414f6b","kind":"tag","published_at":"2023-10-05T04:11:35.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.5","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.5","dependencies_parsed_at":"2023-10-12T08:43:40.212Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.5/manifests"},{"name":"v0.4.9","sha":"33ed6cbf21f47a1a4157f28091737dc05123acdb","kind":"tag","published_at":"2023-09-26T00:30:03.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4.9","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.9","dependencies_parsed_at":"2023-09-28T05:43:01.114Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.9/manifests"},{"name":"v0.4.8","sha":"a75a0da005d6f4cb37685e4c0f572025339d0d5b","kind":"tag","published_at":"2023-09-20T04:04:05.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4.8","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.8","dependencies_parsed_at":"2023-09-22T05:24:49.192Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.8/manifests"},{"name":"v0.4.7","sha":"12c734257a846e30c493c29a25718b64311f0a2b","kind":"tag","published_at":"2023-06-04T22:44:05.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4.7","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.7","dependencies_parsed_at":"2023-06-06T00:07:55.007Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.7/manifests"},{"name":"v0.4.6","sha":"820aa6f784d3cdde420f3f06bc5c9af63cf36957","kind":"tag","published_at":"2023-06-04T21:04:34.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4.6","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.6","dependencies_parsed_at":"2023-06-06T00:07:55.019Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.6/manifests"},{"name":"v0.4.5","sha":"bc2ae8b462db61b0b67d0fc8f7f68062fc53e280","kind":"tag","published_at":"2023-05-26T19:19:32.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4.5","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.5","dependencies_parsed_at":"2023-06-02T00:22:06.776Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.5/manifests"},{"name":"v0.4.4","sha":"2c2f875b6383017f9211a8d386517384e6ade11d","kind":"tag","published_at":"2023-03-27T20:11:55.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4.4","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.4","dependencies_parsed_at":"2023-06-02T00:22:07.623Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.4/manifests"},{"name":"v0.4.3","sha":"f0f9964838a87de8da73f389b606462452b44038","kind":"tag","published_at":"2023-03-09T00:01:17.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4.3","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.3","dependencies_parsed_at":"2023-06-02T00:22:07.179Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.3/manifests"},{"name":"v0.4.2","sha":"1ca73d3a77f59a36a3a1ca3c1f86596cabaeda15","kind":"tag","published_at":"2023-02-20T00:32:01.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4.2","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.2","dependencies_parsed_at":"2023-06-02T00:22:05.431Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.2/manifests"},{"name":"v0.4.1","sha":"4a31476e60f77f1cc4ba491d8e7602c720ec2301","kind":"tag","published_at":"2023-01-07T21:42:55.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4.1","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.1","dependencies_parsed_at":"2023-06-01T13:22:31.928Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4.1/manifests"},{"name":"v0.4","sha":"42fb10c2abe0119c68680d385eeea467f4a5072c","kind":"tag","published_at":"2022-11-04T02:18:13.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.4","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.4","dependencies_parsed_at":"2023-05-31T20:43:53.386Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.4/manifests"},{"name":"v0.3.9","sha":"c28ce3dd024e5ef754043268ab18774b7c4729f6","kind":"tag","published_at":"2022-10-28T23:42:26.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3.9","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3.9","dependencies_parsed_at":"2023-05-31T20:43:53.800Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.9/manifests"},{"name":"v0.3.8","sha":"8bca52d6265fc65b8622cac93248d6a7d4e779c2","kind":"tag","published_at":"2022-10-26T19:44:54.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3.8","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3.8","dependencies_parsed_at":"2023-05-31T18:28:44.351Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.8/manifests"},{"name":"v0.3.7","sha":"de38302f16dfc147d520db6ddcbc4ce425e9d900","kind":"tag","published_at":"2022-10-26T06:01:48.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3.7","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3.7","dependencies_parsed_at":"2023-05-31T18:28:44.762Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.7/manifests"},{"name":"v0.3.6","sha":"13a62829ca3ac3701721a31885555e30c77f8a42","kind":"tag","published_at":"2022-10-01T20:48:14.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3.6","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3.6","dependencies_parsed_at":"2023-05-31T18:28:45.022Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.6/manifests"},{"name":"v0.3.5","sha":"1cb3a492b4dd19b39cf51c3a5244ecee6ffbf042","kind":"tag","published_at":"2022-09-12T04:37:33.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3.5","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3.5","dependencies_parsed_at":"2023-05-31T18:28:45.354Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.5/manifests"},{"name":"v0.3.4","sha":"0fa1f34b209862a4dd6c7f420f4dfc82bbac2a97","kind":"tag","published_at":"2022-09-11T01:39:11.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3.4","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3.4","dependencies_parsed_at":"2023-05-30T20:19:32.007Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.4/manifests"},{"name":"v0.3.3","sha":"e7c27613555ac11bc5fec9a5197340e80cc13d30","kind":"tag","published_at":"2022-09-11T00:51:53.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3.3","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3.3","dependencies_parsed_at":"2023-05-30T20:19:31.419Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.3/manifests"},{"name":"v0.3.2","sha":"4e437b219dcc2e5fcc6788a181d06ae2966984e7","kind":"tag","published_at":"2022-08-28T23:13:22.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3.2","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3.2","dependencies_parsed_at":"2023-05-30T20:19:31.730Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.2/manifests"},{"name":"v0.3.1","sha":"47b1d74c0c631234944bfee6f9d4572bc20bdc0c","kind":"tag","published_at":"2022-08-21T05:49:07.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3.1","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3.1","dependencies_parsed_at":"2023-05-30T16:29:15.011Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3.1/manifests"},{"name":"v0.3","sha":"d64e20598b7e192aba3b23e9b4e7a62e239e998f","kind":"tag","published_at":"2022-07-31T05:06:10.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.3","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.3","dependencies_parsed_at":"2023-05-30T16:29:14.759Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.3/manifests"},{"name":"v0.2.9","sha":"081ad7e1e6010c027a754182e93e7f8746fa54b6","kind":"tag","published_at":"2022-07-31T04:48:03.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2.9","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2.9","dependencies_parsed_at":"2023-05-30T16:29:14.452Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.9/manifests"},{"name":"v0.2.8","sha":"a62954490e100a1d32a3a17ec30dedeea3b123b5","kind":"tag","published_at":"2022-07-18T22:32:26.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2.8","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2.8","dependencies_parsed_at":"2023-05-30T16:29:14.188Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.8/manifests"},{"name":"v0.2.7","sha":"e0f40eac78c6d4a998eb25f8b2b74ba89156359d","kind":"tag","published_at":"2022-07-06T03:07:41.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2.7","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2.7","dependencies_parsed_at":"2023-05-30T16:29:13.893Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.7/manifests"},{"name":"v0.2.6","sha":"4eb970a009db16362af62019e21f396ccd035401","kind":"tag","published_at":"2022-06-21T21:46:06.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2.6","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2.6","dependencies_parsed_at":"2023-05-30T16:29:13.612Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.6/manifests"},{"name":"v0.2.5","sha":"79d30ff7c1c8831e6e76e56fd4b9fc169a66c71e","kind":"tag","published_at":"2022-06-08T02:22:00.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2.5","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2.5","dependencies_parsed_at":"2023-05-30T16:29:13.210Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.5/manifests"},{"name":"v0.2.4","sha":"8fef182a8ee4d68c89673dfe5cd75a4e21459dd9","kind":"tag","published_at":"2022-06-08T00:14:49.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2.4","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2.4","dependencies_parsed_at":"2023-05-30T16:29:12.768Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.4/manifests"},{"name":"v0.2.3","sha":"014a754570a7267d65de7afe37042529b9401c88","kind":"tag","published_at":"2022-05-03T04:27:05.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2.3","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2.3","dependencies_parsed_at":"2023-05-30T16:29:12.329Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.3/manifests"},{"name":"v0.2.2","sha":"1b64872ee8a1c62d0027e551d72db4cde33f0ae1","kind":"tag","published_at":"2022-04-26T10:05:26.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2.2","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2.2","dependencies_parsed_at":"2023-05-30T16:29:11.874Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.2/manifests"},{"name":"v0.2.1","sha":"a909f967aedcb42670a724b5ff24544b662d50b9","kind":"tag","published_at":"2022-04-23T00:19:24.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2.1","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2.1","dependencies_parsed_at":"2023-05-30T16:29:11.410Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2.1/manifests"},{"name":"v0.2","sha":"2d06dcf108dd5648fa84add8fd8d730ba85fbfa9","kind":"tag","published_at":"2022-04-22T04:12:32.000Z","download_url":"https://codeload.github.com/StartAutomating/HelpOut/tar.gz/v0.2","html_url":"https://github.com/StartAutomating/HelpOut/releases/tag/v0.2","dependencies_parsed_at":"2023-05-30T16:29:10.997Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/HelpOut@v0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/tags/v0.2/manifests"}]},"repo_metadata_updated_at":"2025-10-08T07:00:21.565Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":17,"rankings":{"downloads":null,"dependent_repos_count":9.960386626525116,"dependent_packages_count":0.0,"stargazers_count":7.47583584218032,"forks_count":12.980510220250357,"docker_downloads_count":null,"average":7.604183172238948},"purl":"pkg:githubactions/StartAutomating/HelpOut","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/HelpOut","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/HelpOut","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/HelpOut/dependencies","status":null,"funding_links":["https://github.com/sponsors/StartAutomating"],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-08T06:36:45.321Z","issues_count":186,"pull_requests_count":48,"avg_time_to_close_issue":2657972.0125786164,"avg_time_to_close_pull_request":45492.666666666664,"issues_closed_count":159,"pull_requests_closed_count":48,"pull_request_authors_count":2,"issue_authors_count":4,"avg_comments_per_issue":0.1935483870967742,"avg_comments_per_pull_request":0.020833333333333332,"merged_pull_requests_count":48,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":63,"past_year_pull_requests_count":6,"past_year_avg_time_to_close_issue":6759721.23255814,"past_year_avg_time_to_close_pull_request":362154.6666666667,"past_year_issues_closed_count":43,"past_year_pull_requests_closed_count":6,"past_year_pull_request_authors_count":2,"past_year_issue_authors_count":3,"past_year_avg_comments_per_issue":0.19047619047619047,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":6,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FHelpOut/issues","maintainers":[{"login":"StartAutomating","count":181,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}],"active_maintainers":[{"login":"StartAutomating","count":25,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FHelpOut/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FHelpOut/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FHelpOut/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FHelpOut/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FHelpOut/codemeta","maintainers":[]}