{"id":6326598,"name":"StartAutomating/GitPub","ecosystem":"actions","description":"Easily Automate Publishing from GitHub","homepage":"https://gitpub.start-automating.com","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/StartAutomating/GitPub","keywords_array":["github","jekyll","jekyll-blog","microblogging","powershell"],"namespace":"StartAutomating","versions_count":6,"first_release_published_at":"2022-10-10T03:42:29.000Z","latest_release_published_at":"2022-11-04T02:30:37.000Z","latest_release_number":"v0.1.5","last_synced_at":"2026-03-17T17:44:36.188Z","created_at":"2023-02-13T13:21:16.607Z","updated_at":"2026-03-17T17:44:36.189Z","registry_url":"https://github.com/StartAutomating/GitPub","install_command":null,"documentation_url":null,"metadata":{"name":"usegitpub","description":"Easily Automate Publishing from GitHub","inputs":{"GitPubScript":{"required":false,"description":"A PowerShell Script that uses GitPub.  \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"},"SkipGitPubPS1":{"required":false,"description":"If set, will not process any files named *.GitPub.ps1"},"CommitMessage":{"required":false,"description":"If provided, will commit any remaining changes made to the workspace with this commit message."},"TargetBranch":{"required":false,"description":"If provided, will checkout a new branch before making the changes."},"PublishParameters":{"required":false,"description":"Any parameters to be sent to Publish-GitPub"},"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":"rss","color":"blue"},"outputs":{"GitPubScriptRuntime":{"description":"The time it took the .GitPubScript parameter to run","value":"${{steps.GitPubAction.outputs.GitPubScriptRuntime}}"},"GitPubPS1Runtime":{"description":"The time it took all .GitPub.ps1 files to run","value":"${{steps.GitPubAction.outputs.GitPubPS1Runtime}}"},"GitPubPS1Files":{"description":"The .GitPub.ps1 files that were run (separated by semicolons)","value":"${{steps.GitPubAction.outputs.GitPubPS1Files}}"},"GitPubPS1Count":{"description":"The number of .GitPub.ps1 files that were run","value":"${{steps.GitPubAction.outputs.GitPubPS1Count}}"}},"runs":{"using":"composite","steps":[{"name":"GitPubAction","id":"GitPubAction","shell":"pwsh","env":{"UserName":"${{inputs.UserName}}","GitPubScript":"${{inputs.GitPubScript}}","PublishParameters":"${{inputs.PublishParameters}}","TargetBranch":"${{inputs.TargetBranch}}","SkipGitPubPS1":"${{inputs.SkipGitPubPS1}}","UserEmail":"${{inputs.UserEmail}}","CommitMessage":"${{inputs.CommitMessage}}"},"run":"$Parameters = @{}\n$Parameters.GitPubScript = ${env:GitPubScript}\n$Parameters.SkipGitPubPS1 = ${env:SkipGitPubPS1}\n$Parameters.SkipGitPubPS1 = $parameters.SkipGitPubPS1 -match 'true';\n$Parameters.CommitMessage = ${env:CommitMessage}\n$Parameters.TargetBranch = ${env:TargetBranch}\n$Parameters.PublishParameters = ${env:PublishParameters}\n$Parameters.PublishParameters = ConvertFrom-JSON @\"\n$($Parameters.PublishParameters)\n\"@\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:: GitPubAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for GitPub\n.Description\n    GitHub Action for GitPub.  This will:\n\n    * Import GitPub\n    * Run all *.GitPub.ps1 files beneath the workflow directory\n    * Run a .GitPubScript 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 GitPub.  \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$GitPubScript,\n\n# If set, will not process any files named *.GitPub.ps1\n[switch]\n$SkipGitPubPS1,\n\n# If provided, will commit any remaining changes made to the workspace with this commit message.\n[string]\n$CommitMessage,\n\n# If provided, will checkout a new branch before making the changes.\n[string]\n$TargetBranch,\n\n# Any parameters to be sent to Publish-GitPub\n$PublishParameters,\n\n# The user email associated with a git commit.\n[string]\n$UserEmail,\n\n# The user name associated with a git commit.\n[string]\n$UserName\n)\n\n#region Initial Logging\n\n# Output the parameters passed to this script (for debugging)\n\"::group::Parameters\" | Out-Host\n[PSCustomObject]$PSBoundParameters | Format-List | Out-Host\n\"::endgroup::\" | Out-Host\n\n# Get the GitHub Event\n$gitHubEvent = \n    if ($env:GITHUB_EVENT_PATH) {\n        [IO.File]::ReadAllText($env:GITHUB_EVENT_PATH) | ConvertFrom-Json\n    } else { $null }\n\n# Log the GitHub Event\n@\"\n::group::GitHubEvent\n$($gitHubEvent | ConvertTo-Json -Depth 100)\n::endgroup::\n\"@ | Out-Host\n\n# Check that there is a workspace (and throw if there is not)\nif (-not $env:GITHUB_WORKSPACE) { throw \"No GitHub workspace\" }\n\n#endregion Initial Logging\n\n#region Configure UserName and Email\nif (-not $UserName)  {\n    $UserName =  \n        if ($env:GITHUB_TOKEN) {\n            Invoke-RestMethod -uri \"https://api.github.com/user\" -Headers @{\n                Authorization = \"token $env:GITHUB_TOKEN\"\n            } |\n                Select-Object -First 1 -ExpandProperty name\n        } else {\n            $env:GITHUB_ACTOR\n        }\n}\n\nif (-not $UserEmail) { \n    $GitHubUserEmail = \n        if ($env:GITHUB_TOKEN) {\n            Invoke-RestMethod -uri \"https://api.github.com/user/emails\" -Headers @{\n                Authorization = \"token $env:GITHUB_TOKEN\"\n            } |\n                Select-Object -First 1 -ExpandProperty email\n        } else {''}\n    $UserEmail = \n        if ($GitHubUserEmail) {\n            $GitHubUserEmail\n        } else {\n            \"$UserName@github.com\"\n        }    \n}\ngit config --global user.email $UserEmail\ngit config --global user.name  $UserName\n#endregion Configure UserName and Email\n\n# Check to ensure we are on a branch\n$branchName = git rev-parse --abrev-ref HEAD\n# If we were not, return.\nif (-not $branchName) {\n    \"::notice title=ModuleLoaded::$actionModuleName Loaded from Path - $($actionModulePath)\" | Out-Host\n    return\n}\n\ngit pull | Out-Host\n\nif ($TargetBranch) {\n    \"::notice title=Expanding target branch string $targetBranch\" | Out-Host\n    $TargetBranch = $ExecutionContext.SessionState.InvokeCommand.ExpandString($TargetBranch)\n    \"::notice title=Checking out target branch::$targetBranch\" | Out-Host\n    git checkout -b $TargetBranch | Out-Host\n\n    git pull | Out-Host\n}\n\n\n#region Load Action Module\n$ActionModuleName     = \"GitPub\"\n$ActionModuleFileName = \"$ActionModuleName.psd1\"\n\n# Try to find a local copy of the action's module.\n# This allows the action to use the current branch's code instead of the action's implementation.\n$PSD1Found = Get-ChildItem -Recurse -Filter \"*.psd1\" |\n    Where-Object Name -eq $ActionModuleFileName | \n    Select-Object -First 1\n\n$ActionModulePath, $ActionModule = \n    # If there was a .PSD1 found\n    if ($PSD1Found) {\n        $PSD1Found.FullName # import from there.\n        Import-Module $PSD1Found.FullName -Force -PassThru\n    } \n    # Otherwise, if we have a GITHUB_ACTION_PATH\n    elseif ($env:GITHUB_ACTION_PATH) \n    {\n        $actionModulePath = Join-Path $env:GITHUB_ACTION_PATH $ActionModuleFileName\n        if (Test-path $actionModulePath) {\n            $actionModulePath\n            Import-Module $actionModulePath -Force -PassThru\n        } else {\n            throw \"$actionModuleName not found\"\n        }\n    } \n    elseif (-not (Get-Module $ActionModuleName)) {\n        throw \"$actionModulePath could not be loaded.\"\n    }\n\n\"::notice title=ModuleLoaded::$actionModuleName Loaded from Path - $($actionModulePath)\" | Out-Host\n#endregion Load Action Module\n\n#region Declare Functions and Variables\n$anyFilesChanged = $false\n$fileChangeCount = 0\nfilter ProcessScriptOutput {\n    $out = $_\n    $outItem = Get-Item -Path $out -ErrorAction SilentlyContinue\n    $fullName, $shouldCommit = \n        if ($out -is [IO.FileInfo]) {\n            $out.FullName, (git status $out.Fullname -s)\n        } elseif ($outItem) {\n            $outItem.FullName, (git status $outItem.Fullname -s)\n        }\n    if ($shouldCommit) {\n        git add $fullName\n        if ($out.Message) {\n            git commit -m \"$($out.Message)\"\n        } elseif ($out.CommitMessage) {\n            git commit -m \"$($out.CommitMessage)\"\n        } elseif ($gitHubEvent.head_commit.message) {\n            git commit -m \"$($gitHubEvent.head_commit.message)\"\n        }\n        $anyFilesChanged = $true\n        $fileChangeCount++\n    }\n    $out\n}\n\n#endregion Declare Functions and Variables\n\n\n#region Actual Action\n\n$GitPubScriptStart = [DateTime]::Now\nif ($GitPubScript) {\n    Invoke-Expression -Command $GitPubScript |\n        . processScriptOutput |\n        Out-Host\n}\n\nif ($PublishParameters) {    \n    Publish-GitPub -Parameter $PublishParameters |\n        . processScriptOutput |\n        Out-Host\n}\n\n$GitPubScriptTook = [Datetime]::Now - $GitPubScriptStart\n\"::set-output name=GitPubScriptRuntime::$($GitPubScriptTook.TotalMilliseconds)\"   | Out-Host\n\n$GitPubPS1Start = [DateTime]::Now\n$GitPubPS1List  = @()\nif (-not $SkipGitPubPS1) {\n    $GitPubFiles = @(\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n        Where-Object Name -Match '\\.GitPub\\.ps1$')\n        \n    if ($GitPubFiles) {\n        $GitPubFiles|        \n            ForEach-Object {\n                $GitPubPS1List += $_.FullName.Replace($env:GITHUB_WORKSPACE, '').TrimStart('/')\n                $GitPubPS1Count++\n                \"::notice title=Running::$($_.Fullname)\" | Out-Host\n                . $_.FullName |            \n                    . processScriptOutput  | \n                    Out-Host\n            }\n    }\n}\n\n$GitPubPS1EndStart = [DateTime]::Now\n$GitPubPS1Took = [Datetime]::Now - $GitPubPS1Start\n\"::set-output name=GitPubPS1Count::$($GitPubPS1List.Length)\"   | Out-Host\n\"::set-output name=GitPubPS1Files::$($GitPubPS1List -join ';')\"   | Out-Host\n\"::set-output name=GitPubPS1Runtime::$($GitPubPS1Took.TotalMilliseconds)\"   | Out-Host\nif ($CommitMessage -or $anyFilesChanged) {\n    if ($CommitMessage) {\n        dir $env:GITHUB_WORKSPACE -Recurse |\n            ForEach-Object {\n                $gitStatusOutput = git status $_.Fullname -s\n                if ($gitStatusOutput) {\n                    git add $_.Fullname\n                }\n            }\n\n        git commit -m $ExecutionContext.SessionState.InvokeCommand.ExpandString($CommitMessage)\n    }    \n    \n    \n\n    $checkDetached = git symbolic-ref -q HEAD\n    if (-not $LASTEXITCODE) {\n        \"::notice::Pulling Updates\" | Out-Host\n        if (-not $targetBranch) { git pull }\n        \"::notice::Pushing Changes\" | Out-Host\n        \n        $gitPushed = \n            if ($TargetBranch -and $anyFilesChanged) {\n                git push --set-upstream origin $TargetBranch\n            } elseif ($anyFilesChanged) {\n                git push\n            }\n                \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\n#endregion Actual Action\n} @Parameters\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":61142390,"uuid":"548650105","full_name":"StartAutomating/GitPub","owner":"StartAutomating","description":"Easily Automate Publishing from GitHub","archived":false,"fork":false,"pushed_at":"2022-12-12T10:15:24.000Z","size":145,"stargazers_count":9,"open_issues_count":6,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-17T13:09:15.843Z","etag":null,"topics":["github","jekyll","jekyll-blog","microblogging","powershell"],"latest_commit_sha":null,"homepage":"https://gitpub.start-automating.com","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StartAutomating.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-10-10T01:08:34.000Z","updated_at":"2025-10-06T09:39:51.000Z","dependencies_parsed_at":"2022-10-11T16:16:45.322Z","dependency_job_id":null,"html_url":"https://github.com/StartAutomating/GitPub","commit_stats":{"total_commits":323,"total_committers":3,"mean_commits":"107.66666666666667","dds":0.3436532507739938,"last_synced_commit":"a812145c634456e3e0c566a1f6000a6165358ad6"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/StartAutomating/GitPub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FGitPub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FGitPub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FGitPub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FGitPub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","download_url":"https://codeload.github.com/StartAutomating/GitPub/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FGitPub/sbom","scorecard":{"id":133868,"data":{"date":"2025-08-04","repo":{"name":"github.com/StartAutomating/GitPub","commit":"a812145c634456e3e0c566a1f6000a6165358ad6"},"scorecard":{"version":"v5.2.1-28-gc1d103a9","commit":"c1d103a9bb9f635ec7260bf9aa0699466fa4be0e"},"score":3.4,"checks":[{"name":"Maintained","score":0,"reason":"0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#maintained"}},{"name":"Code-Review","score":0,"reason":"Found 0/14 approved changesets -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#code-review"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#packaging"}},{"name":"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":"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":"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":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/OnIssue.yml:1","Warn: no topLevel permission defined: .github/workflows/TestAndPublish.yml:1","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":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/OnIssue.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/GitPub/OnIssue.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/OnIssue.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/GitPub/OnIssue.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/GitPub/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/GitPub/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/GitPub/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/GitPub/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/GitPub/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/GitPub/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/GitPub/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:585: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/GitPub/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:587: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/GitPub/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/GitPub/TestAndPublish.yml/main?enable=pin","Info:   0 out of   6 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   6 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#pinned-dependencies"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#security-policy"}},{"name":"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":"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":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: MIT License: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#signed-releases"}},{"name":"Branch-Protection","score":0,"reason":"branch protection not enabled on development/release branches","details":["Warn: branch protection not enabled for branch '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":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 20 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:38.164Z","repository_id":61142390,"created_at":"2025-08-16T05:52:38.164Z","updated_at":"2025-08-16T05:52:38.164Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279829638,"owners_count":26233038,"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-19T02:00:07.647Z","response_time":64,"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-10-14T17:17:52.009Z","metadata":{"has_sponsors_listing":true},"html_url":"https://github.com/StartAutomating","funding_links":["https://github.com/sponsors/StartAutomating"],"total_stars":1292,"followers":514,"following":54,"created_at":"2022-11-08T04:14:46.274Z","updated_at":"2025-10-14T17:17:52.009Z","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":[]},"repo_metadata_updated_at":"2025-10-19T14:30:16.431Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":14,"rankings":{"downloads":null,"dependent_repos_count":10.72096339724291,"dependent_packages_count":0.0,"stargazers_count":15.601331009348756,"forks_count":35.11963238789415,"docker_downloads_count":null,"average":15.360481698621454},"purl":"pkg:githubactions/StartAutomating/GitPub","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/GitPub","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/GitPub","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/GitPub/dependencies","status":null,"funding_links":["https://github.com/sponsors/StartAutomating"],"critical":null,"issue_metadata":{"last_synced_at":"2025-04-10T09:49:15.298Z","issues_count":41,"pull_requests_count":26,"avg_time_to_close_issue":12327.628571428571,"avg_time_to_close_pull_request":23.153846153846153,"issues_closed_count":35,"pull_requests_closed_count":26,"pull_request_authors_count":1,"issue_authors_count":1,"avg_comments_per_issue":0.0,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":26,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":6,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":null,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":0,"past_year_pull_request_authors_count":0,"past_year_issue_authors_count":1,"past_year_avg_comments_per_issue":0.0,"past_year_avg_comments_per_pull_request":null,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":0,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FGitPub/issues","maintainers":[{"login":"StartAutomating","count":67,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}],"active_maintainers":[{"login":"StartAutomating","count":6,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FGitPub/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FGitPub/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FGitPub/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FGitPub/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FGitPub/codemeta","maintainers":[]}