{"id":6326600,"name":"StartAutomating/PipeScript","ecosystem":"actions","description":"Builds code using PipeScript","homepage":"https://pipescript.start-automating.com/","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/StartAutomating/PipeScript","keywords_array":["compiler","github-actions","interpreter","language","metaprogramming","powershell","powershell-module","transpiler"],"namespace":"StartAutomating","versions_count":33,"first_release_published_at":"2022-06-21T05:20:02.000Z","latest_release_published_at":"2024-02-19T19:31:02.000Z","latest_release_number":"v0.2.8","last_synced_at":"2026-04-17T15:45:46.509Z","created_at":"2023-02-13T13:21:24.049Z","updated_at":"2026-04-17T15:45:46.509Z","registry_url":"https://github.com/StartAutomating/PipeScript","install_command":null,"documentation_url":null,"metadata":{"name":"BuildPipeScript","description":"Builds code using PipeScript","inputs":{"Script":{"required":false,"description":"A PowerShell Script that uses PipeScript.  \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"},"SkipBuild":{"required":false,"description":"If set, will not run Build-PipeScript."},"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, if a GitHub Event contains a commit message, that message will be used.\nIf no commit message is provided, and a commit message cannot be automatically detected, changes will not be committed.\n"},"InstallModule":{"required":false,"default":"ugit","description":"A list of modules to be installed from the PowerShell gallery before scripts run.\nNote: If ugit is not installed, commit messages will not be carried properly with multiple commits.\n"},"Serial":{"required":false,"description":"If set, will build files one-by-one, instead of in parallel.  This is currently the default."},"Parallel":{"required":false,"description":"If set, will build files in parallel."},"BatchSize":{"required":false,"default":11,"description":"The number of files to build in each batch."},"ThrottleLimit":{"required":false,"default":7,"description":"The throttle limit for parallel jobs.\nIf too many jobs are running at once, errors may occur.\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":"code","color":"blue"},"runs":{"using":"composite","steps":[{"name":"PipeScriptAction","id":"PipeScriptAction","shell":"pwsh","env":{"UserName":"${{inputs.UserName}}","Script":"${{inputs.Script}}","CommitMessage":"${{inputs.CommitMessage}}","InstallModule":"${{inputs.InstallModule}}","SkipBuild":"${{inputs.SkipBuild}}","UserEmail":"${{inputs.UserEmail}}","BatchSize":"${{inputs.BatchSize}}","Parallel":"${{inputs.Parallel}}","Serial":"${{inputs.Serial}}","ThrottleLimit":"${{inputs.ThrottleLimit}}"},"run":"$Parameters = @{}\n$Parameters.Script = ${env:Script}\n$Parameters.SkipBuild = ${env:SkipBuild}\n$Parameters.SkipBuild = $parameters.SkipBuild -match 'true';\n$Parameters.CommitMessage = ${env:CommitMessage}\n$Parameters.InstallModule = ${env:InstallModule}\n$Parameters.InstallModule = $parameters.InstallModule -split ';' -replace '^[''\"]' -replace  '[''\"]$'\n$Parameters.Serial = ${env:Serial}\n$Parameters.Serial = $parameters.Serial -match 'true';\n$Parameters.Parallel = ${env:Parallel}\n$Parameters.Parallel = $parameters.Parallel -match 'true';\n$Parameters.BatchSize = ${env:BatchSize}\n$Parameters.ThrottleLimit = ${env:ThrottleLimit}\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:: PipeScriptAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for PipeScript\n.Description\n    GitHub Action for PipeScript.  This will:\n\n    * Import PipeScript\n    * Run all *.PipeScript.ps1 files beneath the workflow directory\n    * Run a .PipeScriptScript 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 PipeScript.  \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$Script,\n\n# If set, will not run Build-PipeScript.\n[switch]\n$SkipBuild,\n\n# If provided, will commit any remaining changes made to the workspace with this commit message.\n# If no commit message is provided, if a GitHub Event contains a commit message, that message will be used.\n# If no commit message is provided, and a commit message cannot be automatically detected, changes will not be committed.\n[string]\n$CommitMessage,\n\n# A list of modules to be installed from the PowerShell gallery before scripts run.\n# Note: If ugit is not installed, commit messages will not be carried properly with multiple commits.\n[string[]]\n$InstallModule = 'ugit',\n\n# If set, will build files one-by-one, instead of in parallel.  This is currently the default.\n[switch]\n$Serial,\n\n# If set, will build files in parallel.\n[switch]\n$Parallel,\n\n# The number of files to build in each batch.\n[int]\n$BatchSize = 11,\n\n# The throttle limit for parallel jobs.\n# If too many jobs are running at once, errors may occur.\n[int]\n$ThrottleLimit = 7,\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# Set -ErrorActionPreference to continue.\n$global:ErrorActionPreference = 'continue'\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 -AllowClobber\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\" | Where-Object Name -eq 'PipeScript.psd1' | 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    $PipeScriptModulePath = Join-Path $env:GITHUB_ACTION_PATH 'PipeScript.psd1'\n    if (Test-path $PipeScriptModulePath) {\n        Import-Module $PipeScriptModulePath -Force -PassThru | Out-Host\n    } else {\n        throw \"PipeScript not found\"\n    }\n} elseif (-not (Get-Module PipeScript)) {    \n    throw \"Action Path not found\"\n}\n\n\"::notice title=ModuleLoaded::PipeScript Loaded from Path - $($PipeScriptModulePath)\" | 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        elseif ($CommitMessage) {\n            git commit -m $CommitMessage   \n        }\n        elseif ($gitHubEvent.head_commit.message) {\n            git commit -m \"$($gitHubEvent.head_commit.message)\"\n        }        \n        $anyFilesChanged = $true\n    }\n    $out\n} }\n\n\nif (-not $UserName) { $UserName = $env:GITHUB_ACTOR }\n\nif (-not $UserEmail) {\n    $UserEmail = \n        if ($GitHubUserEmail) {\n            $GitHubUserEmail\n        } else {\n            \"$UserName@github.com\"\n        }    \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$branchName = git rev-parse --abrev-ref HEAD\nif (-not $branchName) { \n    return\n}\n\ntry { $unshallowResults = git fetch --unshallow  } catch { $_ | Out-Host } \n\nif (-not $Parallel) { $serial= $true}\n\n$PipeScriptStart = [DateTime]::Now\nif ($Script) {\n    Invoke-PipeScript -Command $Script |\n        . $processScriptOutput |\n        Out-Host\n}\n\n$PipeScriptTook = [Datetime]::Now - $PipeScriptStart\n\"::notice:: .PipeScript ran in $($PipeScriptTook.TotalMilliseconds) ms\" | Out-Host\n\"::notice:: Building Files in '$env:GITHUB_WORKSPACE'\" | Out-Host\n$BuildPipeScriptStart = [DateTime]::Now\n$pipeScriptBuildErrors = $null\nif (-not $SkipBuild) {\n    \n    $buildOutputFiles = @(Build-Pipescript -Serial:$Serial -BatchSize:$BatchSize -ThrottleLimit:$ThrottleLimit -InputPath $env:GITHUB_WORKSPACE -ErrorVariable pipeScriptBuildErrors)\n    if ($buildOutputFiles) {\n        \"::notice:: $($buildOutputFiles.Length) files outputted\" | Out-Host        \n        \"$($buildOutputFiles.FullName -join [Environment]::newLine)\" | Out-Host\n        $buildOutputFiles |\n            . $processScriptOutput  | \n            Out-Host\n    }        \n}\n\nif ($pipeScriptBuildErrors) {\n    \"There were build errors\" | Out-Host\n    \"::error::$($pipeScriptBuildErrors | Out-String)\" | Out-Host\n    $pipeScriptBuildErrors\n    exit 1\n}\n\n$BuildPipeScriptEnd = [DateTime]::Now\n$BuildPipeScriptTook = $BuildPipeScriptEnd - $BuildPipeScriptStart\n\n[long]$TotalFileLength = 0\n$buildFilePaths = @(\n    foreach ($buildOutputFile in $buildOutputFiles) {\n        if ($buildOutputFile.FullName) {\n            $buildOutputFile.FullName\n            if ($buildOutputFile.Length) {\n                $TotalFileLength+=$buildOutputFile.Length\n            }\n        }        \n    }\n)\n\n\"::notice:: $($buildOutputFiles.Length) files built ( $([Math]::Round($TotalFileLength/1kb, 2))kb ) in $($BuildPipeScriptTook.TotalSeconds) seconds\" | Out-Host\n\"::group:: Output Files\" |\n    Out-Host\n\n$buildFilePaths -join [Environment]::newLine | Out-Host\n\n\"::endgroup::\" | Out-Host\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\n\n    $checkDetached = git symbolic-ref -q HEAD\n    if (-not $LASTEXITCODE) {\n        \"::notice::Pulling Changes\" | Out-Host\n        git pull | Out-Host\n        \"::notice::Pushing Changes\" | Out-Host\n        git push | Out-Host\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":37284713,"uuid":"505640558","full_name":"StartAutomating/PipeScript","owner":"StartAutomating","description":"A Metaprogramming Language for PowerShell (and anything else)","archived":false,"fork":false,"pushed_at":"2024-06-29T05:31:23.000Z","size":4845,"stargazers_count":98,"open_issues_count":370,"forks_count":8,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-09-16T18:25:36.184Z","etag":null,"topics":["compiler","github-actions","interpreter","language","metaprogramming","powershell","powershell-module","transpiler"],"latest_commit_sha":null,"homepage":"https://pipescript.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":"docs/SupportedLanguages.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["StartAutomating"]}},"created_at":"2022-06-21T00:39:15.000Z","updated_at":"2025-08-22T20:26:13.000Z","dependencies_parsed_at":"2024-01-12T04:07:41.601Z","dependency_job_id":"e2dc4c53-61c3-4409-b52d-1866acf44269","html_url":"https://github.com/StartAutomating/PipeScript","commit_stats":{"total_commits":6069,"total_committers":5,"mean_commits":1213.8,"dds":"0.22227714615257865","last_synced_commit":"be7b2e60bf10f60cc3422b0d6e72d71275392169"},"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/StartAutomating/PipeScript","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/sbom","scorecard":{"id":133878,"data":{"date":"2025-08-04","repo":{"name":"github.com/StartAutomating/PipeScript","commit":"be7b2e60bf10f60cc3422b0d6e72d71275392169"},"scorecard":{"version":"v5.2.1-28-gc1d103a9","commit":"c1d103a9bb9f635ec7260bf9aa0699466fa4be0e"},"score":3.4,"checks":[{"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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#code-review"}},{"name":"Maintained","score":0,"reason":"0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#maintained"}},{"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":"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":"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/GitPub.yml:1","Warn: no topLevel permission defined: .github/workflows/TestAndPublish.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":"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":"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":"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":"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:11: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PipeScript/GitPub.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/GitPub.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PipeScript/GitPub.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/PipeScript/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/PipeScript/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/PipeScript/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/PipeScript/TestAndPublish.yml/main?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/PipeScript/TestAndPublish.yml/main?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/PipeScript/TestAndPublish.yml/main?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/PipeScript/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:586: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PipeScript/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:589: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PipeScript/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:596: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PipeScript/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:598: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/PipeScript/TestAndPublish.yml/main?enable=pin","Warn: containerImage not pinned by hash: Dockerfile:2: pin your Docker image by updating mcr.microsoft.com/powershell to mcr.microsoft.com/powershell@sha256:810c4f1e0c9d23022c3ec18c50a6205ee4b60766f1739d329b2948df1fd7d5b0","Info:   0 out of   6 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   7 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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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 '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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/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/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#signed-releases"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 30 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:49.487Z","repository_id":37284713,"created_at":"2025-08-16T05:52:49.487Z","updated_at":"2025-08-16T05:52:49.487Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279006752,"owners_count":26084180,"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-11T02:00:06.511Z","response_time":55,"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.2.8","sha":"be7b2e60bf10f60cc3422b0d6e72d71275392169","kind":"tag","published_at":"2024-02-19T19:31:02.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.2.8","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.2.8","dependencies_parsed_at":"2024-02-22T04:22:37.104Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.2.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.8/manifests"},{"name":"v0.2.7","sha":"724d391a6d88f0b7715838819fa73d7b35b3b069","kind":"tag","published_at":"2023-12-18T06:36:11.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.2.7","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.2.7","dependencies_parsed_at":"2023-12-21T05:44:34.361Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.2.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.7/manifests"},{"name":"v0.2.6","sha":"c0d623061f2857fba34c32124a18224332402b1d","kind":"tag","published_at":"2023-06-29T01:15:10.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.2.6","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.2.6","dependencies_parsed_at":"2023-07-02T04:13:54.496Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.2.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.6/manifests"},{"name":"v0.2.5","sha":"80fa0020a4680763a6b5ef94943bcef78785d03d","kind":"tag","published_at":"2023-04-27T14:46:29.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.2.5","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.2.5","dependencies_parsed_at":"2023-06-02T00:26:29.090Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.2.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.5/manifests"},{"name":"v0.2.4","sha":"24a016582e1ebfc0c15aa652041218f04bc1b8a5","kind":"tag","published_at":"2023-03-31T06:50:39.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.2.4","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.2.4","dependencies_parsed_at":"2023-06-02T00:26:29.716Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.2.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.4/manifests"},{"name":"v0.2.3","sha":"2f645d4dc2508591bd5831648c0d75d228e656cf","kind":"tag","published_at":"2023-03-12T05:49:31.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.2.3","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.2.3","dependencies_parsed_at":"2023-06-02T00:26:29.783Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.3/manifests"},{"name":"v0.2.2","sha":"084b180b989b695b072c7aa9aa14085d5c8a181c","kind":"tag","published_at":"2022-12-24T10:03:17.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.2.2","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.2.2","dependencies_parsed_at":"2023-06-01T10:12:39.956Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.2/manifests"},{"name":"v0.2.1","sha":"ace7a57648819f3235ac38863146237b45551fe9","kind":"tag","published_at":"2022-11-16T11:42:02.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.2.1","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.2.1","dependencies_parsed_at":"2023-05-31T20:47:44.536Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2.1/manifests"},{"name":"v0.2","sha":"31fc171172c011b8ffa10faf864f1d415722ff79","kind":"tag","published_at":"2022-11-14T05:36:00.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.2","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.2","dependencies_parsed_at":"2023-05-31T20:47:45.068Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.2/manifests"},{"name":"v0.1.9","sha":"aa93270ddb33a60ffa3b95c1476a7dcec0a5fbaa","kind":"tag","published_at":"2022-11-07T05:04:59.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1.9","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.9","dependencies_parsed_at":"2023-05-31T19:49:03.926Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.9/manifests"},{"name":"v0.1.8","sha":"5243a01a6b860f01b177bf4d7f32076e1210d44e","kind":"tag","published_at":"2022-10-21T02:41:27.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1.8","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.8","dependencies_parsed_at":"2023-05-31T19:23:10.753Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.8/manifests"},{"name":"v0.1.7","sha":"356b4c22f5b22a635c5c817df29f7d121de4eca3","kind":"tag","published_at":"2022-10-09T05:56:52.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1.7","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.7","dependencies_parsed_at":"2023-05-31T16:24:44.907Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.7/manifests"},{"name":"v0.1.6","sha":"31db53ff5a5c4af36e25346938e183d95b4b892a","kind":"tag","published_at":"2022-10-08T06:14:32.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1.6","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.6","dependencies_parsed_at":"2023-05-31T16:24:45.298Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.6/manifests"},{"name":"v0.1.5","sha":"b4c770c791f58891a79b16857e0f9ef95fcf0da4","kind":"tag","published_at":"2022-09-22T04:57:55.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1.5","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.5","dependencies_parsed_at":"2023-05-31T01:03:33.349Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.5/manifests"},{"name":"v0.1.4","sha":"0001b440b4f748de2434930e6e98237bf9f5fc45","kind":"tag","published_at":"2022-09-19T06:00:11.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1.4","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.4","dependencies_parsed_at":"2023-05-31T01:03:33.911Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.4/manifests"},{"name":"v0.1.3","sha":"26530571a9b0e8c27c45755b99101047d7fdc60a","kind":"tag","published_at":"2022-09-15T20:33:56.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1.3","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.3","dependencies_parsed_at":"2023-05-31T01:03:34.405Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.3/manifests"},{"name":"v0.1.2","sha":"624734b973da154d9553faefe4246b942c573ba0","kind":"tag","published_at":"2022-09-08T01:49:48.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1.2","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.2","dependencies_parsed_at":"2023-05-31T01:03:34.986Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.2/manifests"},{"name":"v0.1.1","sha":"0c6634f01190644bbd95bc7252a15bcceeee699a","kind":"tag","published_at":"2022-08-08T01:14:34.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1.1","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.1","dependencies_parsed_at":"2023-05-31T01:03:35.398Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1.1/manifests"},{"name":"v0.1","sha":"4c9575adbbdf9bb4346bcf887cd71fef6d223299","kind":"tag","published_at":"2022-08-01T06:17:03.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.1","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.1","dependencies_parsed_at":"2023-05-31T01:03:35.801Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.1/manifests"},{"name":"v0.0.14","sha":"65083c8ada668170dd773aa97e5ae9d5fa75497c","kind":"tag","published_at":"2022-07-31T03:02:57.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.14","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.14","dependencies_parsed_at":"2023-05-31T01:03:36.345Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.14/manifests"},{"name":"v0.0.13","sha":"97312e2daf44711a7607c0d83c2daf2e5f3faaa8","kind":"tag","published_at":"2022-07-26T04:17:56.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.13","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.13","dependencies_parsed_at":"2023-05-31T01:03:36.858Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.13/manifests"},{"name":"v0.0.12","sha":"bd12523a93d80a6a450532485f1ed45bcc01c511","kind":"tag","published_at":"2022-07-24T03:45:13.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.12","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.12","dependencies_parsed_at":"2023-05-31T01:03:37.327Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.12/manifests"},{"name":"v0.0.11","sha":"5756723c7bbdd8084ae5027786c2860a4ceaba9d","kind":"tag","published_at":"2022-07-20T02:57:28.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.11","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.11","dependencies_parsed_at":"2023-05-31T01:03:37.796Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.11/manifests"},{"name":"v0.0.10","sha":"6f5bbace0fff45c5c4d62c36a3e3a086529ae42c","kind":"tag","published_at":"2022-07-19T00:12:40.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.10","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.10","dependencies_parsed_at":"2023-05-31T01:03:39.020Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.10/manifests"},{"name":"v0.0.9","sha":"142329e524e01a65ae5fd78f4ae77e6992460ca2","kind":"tag","published_at":"2022-07-15T21:03:17.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.9","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.9","dependencies_parsed_at":"2023-05-31T01:03:39.438Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.9/manifests"},{"name":"v0.0.8","sha":"cfad46812d71461ae623a10a92110c9ce4d6675b","kind":"tag","published_at":"2022-07-10T02:08:30.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.8","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.8","dependencies_parsed_at":"2023-05-31T01:03:39.802Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.8/manifests"},{"name":"v0.0.7","sha":"ed952207a27be4bf7e9874b1af50ed7fe81a48ef","kind":"tag","published_at":"2022-07-04T22:04:13.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.7","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.7","dependencies_parsed_at":"2023-05-31T01:03:40.370Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.7/manifests"},{"name":"v0.0.6","sha":"0aa1f4cbd85821a44afe3791e982111354901a5e","kind":"tag","published_at":"2022-07-02T21:22:27.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.6","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.6","dependencies_parsed_at":"2023-05-31T01:03:40.768Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.6/manifests"},{"name":"v0.0.5","sha":"45144659aeb5709ce064245fd354e7a05396e083","kind":"tag","published_at":"2022-06-29T01:33:04.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.5","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.5","dependencies_parsed_at":"2023-05-31T01:03:41.215Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.5/manifests"},{"name":"v0.0.4","sha":"7fba8627411ae8a5623b500e943d5edaddf98418","kind":"tag","published_at":"2022-06-28T01:20:38.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.4","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.4","dependencies_parsed_at":"2023-05-31T01:03:41.634Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.4/manifests"},{"name":"v0.0.3","sha":"37aa6a1c818e46cac6dad4652a01095a5389898a","kind":"tag","published_at":"2022-06-22T23:48:17.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.3","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.3","dependencies_parsed_at":"2023-05-31T01:03:42.006Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.3/manifests"},{"name":"v0.0.2","sha":"fd2854d080e494eb7c11fa2910ea060a6d69cd50","kind":"tag","published_at":"2022-06-21T22:33:28.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.2","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.2","dependencies_parsed_at":"2023-05-31T01:03:42.425Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.2/manifests"},{"name":"v0.0.1","sha":"13a59d6209e84011386de8cfbd470395106c112e","kind":"tag","published_at":"2022-06-21T05:20:02.000Z","download_url":"https://codeload.github.com/StartAutomating/PipeScript/tar.gz/v0.0.1","html_url":"https://github.com/StartAutomating/PipeScript/releases/tag/v0.0.1","dependencies_parsed_at":"2023-05-31T01:03:42.999Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/PipeScript@v0.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPipeScript/tags/v0.0.1/manifests"}]},"repo_metadata_updated_at":"2025-10-12T21:48:10.689Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":16,"rankings":{"downloads":null,"dependent_repos_count":10.166376168594518,"dependent_packages_count":0.0,"stargazers_count":3.5113294248138174,"forks_count":8.25225796228807,"docker_downloads_count":null,"average":5.482490888924101},"purl":"pkg:githubactions/StartAutomating/PipeScript","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/PipeScript","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/PipeScript","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/PipeScript/dependencies","status":null,"funding_links":["https://github.com/sponsors/StartAutomating"],"critical":null,"issue_metadata":{"last_synced_at":"2025-09-13T02:59:05.225Z","issues_count":563,"pull_requests_count":13,"avg_time_to_close_issue":2512525.9186991868,"avg_time_to_close_pull_request":169291.72727272726,"issues_closed_count":246,"pull_requests_closed_count":11,"pull_request_authors_count":3,"issue_authors_count":6,"avg_comments_per_issue":0.02664298401420959,"avg_comments_per_pull_request":0.07692307692307693,"merged_pull_requests_count":10,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":2,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":12260.0,"past_year_avg_time_to_close_pull_request":null,"past_year_issues_closed_count":1,"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.5,"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%2FPipeScript/issues","maintainers":[{"login":"StartAutomating","count":565,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPipeScript/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPipeScript/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPipeScript/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPipeScript/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPipeScript/codemeta","maintainers":[]}