{"id":7748155,"name":"StartAutomating/ugit","ecosystem":"actions","description":"Updated Git","homepage":"https://ugit.start-automating.com","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/StartAutomating/ugit","keywords_array":["git","powershell"],"namespace":"StartAutomating","versions_count":38,"first_release_published_at":"2022-03-20T11:11:37.000Z","latest_release_published_at":"2024-10-16T02:16:51.000Z","latest_release_number":"v0.4.5","last_synced_at":"2026-04-16T09:54:54.374Z","created_at":"2023-05-17T11:41:07.317Z","updated_at":"2026-04-16T09:54:54.374Z","registry_url":"https://github.com/StartAutomating/ugit","install_command":null,"documentation_url":null,"metadata":{"name":"UseUGit","description":"Updated Git","inputs":{"Run":{"required":false,"description":"A PowerShell Script that uses ugit.  \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"},"SkipScriptFile":{"required":false,"description":"If set, will not process any files named *.ugit.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."},"TargetBranch":{"required":false,"description":"If provided, will checkout a new branch before making the changes.\nIf not provided, will use the current branch.\n"},"ActionScript":{"required":false,"default":"'[\\/]Examples[\\/]*'","description":"The name of one or more scripts to run, from this action's path."},"GitHubToken":{"required":false,"default":"{{ secrets.GITHUB_TOKEN }}","description":"The github token to use for requests."},"UserEmail":{"required":false,"description":"The user email associated with a git commit.  If this is not provided, it will be set to the username@noreply.github.com."},"UserName":{"required":false,"description":"The user name associated with a git commit."},"NoPush":{"required":false,"description":"If set, will not push any changes made to the repository.\n(they will still be committed unless `-NoCommit` is passed)\n"},"NoCommit":{"required":false,"description":"If set, will not commit any changes made to the repository.\n(this also implies `-NoPush`)\n"}},"branding":{"icon":"git-merge","color":"blue"},"runs":{"using":"composite","steps":[{"name":"UGitAction","id":"UGitAction","shell":"pwsh","env":{"InstallModule":"${{inputs.InstallModule}}","GitHubToken":"${{inputs.GitHubToken}}","NoPush":"${{inputs.NoPush}}","CommitMessage":"${{inputs.CommitMessage}}","SkipScriptFile":"${{inputs.SkipScriptFile}}","Run":"${{inputs.Run}}","ActionScript":"${{inputs.ActionScript}}","TargetBranch":"${{inputs.TargetBranch}}","UserEmail":"${{inputs.UserEmail}}","NoCommit":"${{inputs.NoCommit}}","UserName":"${{inputs.UserName}}"},"run":"$Parameters = @{}\n$Parameters.Run = ${env:Run}\n$Parameters.SkipScriptFile = ${env:SkipScriptFile}\n$Parameters.SkipScriptFile = $parameters.SkipScriptFile -match 'true';\n$Parameters.InstallModule = ${env:InstallModule}\n$Parameters.InstallModule = $parameters.InstallModule -split ';' -replace '^[''\"]' -replace  '[''\"]$'\n$Parameters.CommitMessage = ${env:CommitMessage}\n$Parameters.TargetBranch = ${env:TargetBranch}\n$Parameters.ActionScript = ${env:ActionScript}\n$Parameters.ActionScript = $parameters.ActionScript -split ';' -replace '^[''\"]' -replace  '[''\"]$'\n$Parameters.GitHubToken = ${env:GitHubToken}\n$Parameters.UserEmail = ${env:UserEmail}\n$Parameters.UserName = ${env:UserName}\n$Parameters.NoPush = ${env:NoPush}\n$Parameters.NoPush = $parameters.NoPush -match 'true';\n$Parameters.NoCommit = ${env:NoCommit}\n$Parameters.NoCommit = $parameters.NoCommit -match 'true';\nforeach ($k in @($parameters.Keys)) {\n    if ([String]::IsNullOrEmpty($parameters[$k])) {\n        $parameters.Remove($k)\n    }\n}\nWrite-Host \"::debug:: UGitAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for ugit\n.Description\n    GitHub Action for ugit.  This will:\n\n    * Import ugit\n    * If `-Run` is provided, run that script\n    * Otherwise, unless `-SkipScriptFile` is passed, run all *.ugit.ps1 files beneath the workflow directory\n      * If any `-ActionScript` was provided, run scripts from the action path that match a wildcard pattern.\n\n    If you will be making changes using the GitHubAPI, you should provide a -GitHubToken\n    If none is provided, and ENV:GITHUB_TOKEN is set, this will be used instead.\n    Any files changed can be outputted by the script, and those changes can be checked back into the repo.\n    Make sure to use the \"persistCredentials\" option with checkout.\n#\u003e\n\nparam(\n# A PowerShell Script that uses ugit.  \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$Run,\n\n# If set, will not process any files named *.ugit.ps1\n[switch]\n$SkipScriptFile,\n\n# A list of modules to be installed from the PowerShell gallery before scripts run.\n[string[]]\n$InstallModule,\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# If not provided, will use the current branch.\n[string]\n$TargetBranch,\n\n# The name of one or more scripts to run, from this action's path.\n[string[]]\n$ActionScript = '[\\/]Examples[\\/]*',\n\n# The github token to use for requests.\n[string]\n$GitHubToken = '{{ secrets.GITHUB_TOKEN }}',\n\n# The user email associated with a git commit.  If this is not provided, it will be set to the username@noreply.github.com.\n[string]\n$UserEmail,\n\n# The user name associated with a git commit.\n[string]\n$UserName,\n\n# If set, will not push any changes made to the repository.\n# (they will still be committed unless `-NoCommit` is passed)\n[switch]\n$NoPush,\n\n# If set, will not commit any changes made to the repository.\n# (this also implies `-NoPush`)\n[switch]\n$NoCommit\n)\n\n$ErrorActionPreference = 'continue'\n\"::group::Parameters\" | Out-Host\n[PSCustomObject]$PSBoundParameters | Format-List | Out-Host\n\"::endgroup::\" | Out-Host\n\n$gitHubEvent = \n    if ($env:GITHUB_EVENT_PATH) {\n        [IO.File]::ReadAllText($env:GITHUB_EVENT_PATH) | ConvertFrom-Json\n    } else { $null }\n\n$anyFilesChanged = $false\n$ActionModuleName = 'ugit'\n$actorInfo = $null\n\n\"::group::Parameters\" | Out-Host\n[PSCustomObject]$PSBoundParameters | Format-List | Out-Host\n\"::endgroup::\" | Out-Host\n\n$checkDetached = git symbolic-ref -q HEAD\nif ($LASTEXITCODE) {\n    \"::warning::On detached head, skipping action\" | Out-Host\n    exit 0\n}\n\nfunction InstallActionModule {\n    param([string]$ModuleToInstall)\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        $availableModules = Get-Module -ListAvailable\n        if ($availableModules.Name -notcontains $moduleToInstall) {\n            Install-Module $moduleToInstall -Scope CurrentUser -Force -AcceptLicense -AllowClobber\n        }\n        Import-Module $moduleToInstall -Force -PassThru | Out-Host\n    } else {\n        Import-Module $moduleInWorkspace.FullName -Force -PassThru | Out-Host\n    }\n}\nfunction ImportActionModule {\n    #region -InstallModule\n    if ($InstallModule) {\n        \"::group::Installing Modules\" | Out-Host\n        foreach ($moduleToInstall in $InstallModule) {\n            InstallActionModule -ModuleToInstall $moduleToInstall\n        }\n        \"::endgroup::\" | Out-Host\n    }\n    #endregion -InstallModule\n\n    if ($env:GITHUB_ACTION_PATH) {\n        $LocalModulePath = Join-Path $env:GITHUB_ACTION_PATH \"$ActionModuleName.psd1\"\n        if (Test-path $LocalModulePath) {\n            Import-Module $LocalModulePath -Force -PassThru | Out-String\n        } else {\n            throw \"Module '$ActionModuleName' not found\"\n        }\n    } elseif (-not (Get-Module $ActionModuleName)) {    \n        throw \"Module '$ActionModuleName' not found\"\n    }\n\n    \"::notice title=ModuleLoaded::$ActionModuleName Loaded from Path - $($LocalModulePath)\" | Out-Host\n    if ($env:GITHUB_STEP_SUMMARY) {\n        \"# $($ActionModuleName)\" |\n            Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY\n    }\n}\nfunction InitializeAction {\n    #region Custom \n    #endregion Custom\n\n    # Configure git based on the $env:GITHUB_ACTOR\n    if (-not $UserName) { $UserName = $env:GITHUB_ACTOR }\n    if (-not $actorID)  { $actorID = $env:GITHUB_ACTOR_ID }\n    $actorInfo = \n        if ($GitHubToken -notmatch '^\\{{2}' -and $GitHubToken -notmatch '\\}{2}$') {\n            Invoke-RestMethod -Uri \"https://api.github.com/user/$actorID\" -Headers @{ Authorization = \"token $GitHubToken\" }\n        } else {\n            Invoke-RestMethod -Uri \"https://api.github.com/user/$actorID\"\n        }\n    \n    if (-not $UserEmail) { $UserEmail = \"$UserName@noreply.github.com\" }\n    git config --global user.email $UserEmail\n    git config --global user.name  $actorInfo.name\n\n    # Pull down any changes\n    git pull | Out-Host\n\n    if ($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        git pull | Out-Host\n    }\n}\n\nfunction InvokeActionModule {\n    $myScriptStart = [DateTime]::Now\n    $myScript = $ExecutionContext.SessionState.PSVariable.Get(\"Run\").Value\n    if ($myScript) {\n        Invoke-Expression -Command $myScript |\n            . ProcessOutput |\n            Out-Host\n        return\n    }\n    $myScriptTook = [Datetime]::Now - $myScriptStart\n    $MyScriptFilesStart = [DateTime]::Now\n\n    $myScriptList  = @()\n    $shouldSkip = $ExecutionContext.SessionState.PSVariable.Get(\"SkipScriptFile\").Value\n    if ($shouldSkip) {\n        return \n    }\n    $scriptFiles = @(\n        Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n            Where-Object Name -Match \"\\.$($ActionModuleName)\\.ps1$\"\n        if ($ActionScript) {\n            if ($ActionScript -match '^\\s{0,}/' -and $ActionScript -match '/\\s{0,}$') {\n                $ActionScriptPattern = $ActionScript.Trim('/').Trim() -as [regex]\n                if ($ActionScriptPattern) {\n                    $ActionScriptPattern = [regex]::new($ActionScript.Trim('/').Trim(), 'IgnoreCase,IgnorePatternWhitespace', [timespan]::FromSeconds(0.5))\n                    Get-ChildItem -Recurse -Path $env:GITHUB_ACTION_PATH |\n                        Where-Object { $_.Name -Match \"\\.$($ActionModuleName)\\.ps1$\" -and $_.FullName -match $ActionScriptPattern }\n                }\n            } else {\n                Get-ChildItem -Recurse -Path $env:GITHUB_ACTION_PATH |\n                    Where-Object Name -Match \"\\.$($ActionModuleName)\\.ps1$\" |\n                    Where-Object FullName -Like $ActionScript\n            }\n        }\n    ) | Select-Object -Unique\n    $scriptFiles |\n        ForEach-Object -Begin {\n            if ($env:GITHUB_STEP_SUMMARY) {\n                \"## $ActionModuleName Scripts\" |\n                    Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY\n            } \n        } -Process {\n            $myScriptList += $_.FullName.Replace($env:GITHUB_WORKSPACE, '').TrimStart('/')\n            $myScriptCount++\n            $scriptFile = $_\n            if ($env:GITHUB_STEP_SUMMARY) {\n                \"### $($scriptFile.Fullname -replace [Regex]::Escape($env:GITHUB_WORKSPACE))\" |\n                    Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY\n            }\n            $scriptCmd = $ExecutionContext.SessionState.InvokeCommand.GetCommand($scriptFile.FullName, 'ExternalScript')                \n            foreach ($requiredModule in $CommandInfo.ScriptBlock.Ast.ScriptRequirements.RequiredModules) {\n                if ($requiredModule.Name -and \n                    (-not $requiredModule.MaximumVersion) -and\n                    (-not $requiredModule.RequiredVersion)\n                ) {\n                    InstallActionModule $requiredModule.Name\n                }\n            }\n            $scriptFileOutputs = . $scriptCmd                \n            $scriptFileOutputs |\n                . ProcessOutput  | \n                Out-Host\n        }    \n    \n    $MyScriptFilesTook = [Datetime]::Now - $MyScriptFilesStart\n    $SummaryOfMyScripts = \"$myScriptCount $ActionModuleName scripts took $($MyScriptFilesTook.TotalSeconds) seconds\" \n    $SummaryOfMyScripts | \n        Out-Host\n    if ($env:GITHUB_STEP_SUMMARY) {\n        $SummaryOfMyScripts | \n            Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY\n    }\n    #region Custom    \n    #endregion Custom\n}\n\nfunction OutError {\n    $anyRuntimeExceptions = $false\n    foreach ($err in $error) {        \n        $errParts = @(\n            \"::error \"\n            @(\n                if ($err.InvocationInfo.ScriptName) {\n                \"file=$($err.InvocationInfo.ScriptName)\"\n            }\n            if ($err.InvocationInfo.ScriptLineNumber -ge 1) {\n                \"line=$($err.InvocationInfo.ScriptLineNumber)\"\n                if ($err.InvocationInfo.OffsetInLine -ge 1) {\n                    \"col=$($err.InvocationInfo.OffsetInLine)\"\n                }\n            }\n            if ($err.CategoryInfo.Activity) {\n                \"title=$($err.CategoryInfo.Activity)\"\n            }\n            ) -join ','\n            \"::\"\n            $err.Exception.Message\n            if ($err.CategoryInfo.Category -eq 'OperationStopped' -and \n                $err.CategoryInfo.Reason -eq 'RuntimeException') {\n                $anyRuntimeExceptions = $true\n            }\n        ) -join ''\n        $errParts | Out-Host\n        if ($anyRuntimeExceptions) {\n            exit 1\n        }\n    }\n}\n\nfunction PushActionOutput {\n    if ($anyFilesChanged) {\n        \"::notice::$($anyFilesChanged) Files Changed\" | Out-Host        \n    }\n    if ($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\n        if (-not $LASTEXITCODE -and -not $NoPush -and -not $noCommit) {            \n            if ($TargetBranch -and $anyFilesChanged) {\n                \"::notice::Pushing Changes to $targetBranch\" | Out-Host\n                git push --set-upstream origin $TargetBranch\n            } elseif ($anyFilesChanged) {\n                \"::notice::Pushing Changes\" | Out-Host\n                git push\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\nfilter ProcessOutput {\n    $out = $_\n    $outItem = Get-Item -Path $out -ErrorAction Ignore\n    if (-not $outItem -and $out -is [string]) {\n        $out | Out-Host\n        if ($env:GITHUB_STEP_SUMMARY) {\n            \"\u003e $out\" | Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY\n        }\n        return\n    }\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 -and -not $NoCommit) {\n        \"$fullName has changed, and should be committed\" | Out-Host\n        git add $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    }    \n    $out\n}\n\n. ImportActionModule\n. InitializeAction\n. InvokeActionModule\n. PushActionOutput\n. OutError} @Parameters\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":38274744,"uuid":"471524111","full_name":"StartAutomating/ugit","owner":"StartAutomating","description":"Updated Git: A powerful PowerShell wrapper for git that lets you extend git, automate multiple repos, and output git as objects.","archived":false,"fork":false,"pushed_at":"2024-12-07T00:15:49.000Z","size":1345,"stargazers_count":85,"open_issues_count":47,"forks_count":7,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-17T19:39:05.234Z","etag":null,"topics":["git","powershell"],"latest_commit_sha":null,"homepage":"https://ugit.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,"zenodo":null},"funding":{"github":["StartAutomating"]}},"created_at":"2022-03-18T21:39:31.000Z","updated_at":"2025-10-06T09:38:30.000Z","dependencies_parsed_at":"2024-02-28T19:48:13.965Z","dependency_job_id":"936321e8-410d-4dd3-ac78-5e5635e856b0","html_url":"https://github.com/StartAutomating/ugit","commit_stats":null,"previous_names":[],"tags_count":38,"template":false,"template_full_name":null,"purl":"pkg:github/StartAutomating/ugit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/sbom","scorecard":{"id":133883,"data":{"date":"2025-08-04","repo":{"name":"github.com/StartAutomating/ugit","commit":"ff1e4dd2809e2071663f7f07e054d1026716d0dc"},"scorecard":{"version":"v5.2.1-28-gc1d103a9","commit":"c1d103a9bb9f635ec7260bf9aa0699466fa4be0e"},"score":4.3,"checks":[{"name":"Code-Review","score":5,"reason":"Found 1/2 approved changesets -- score normalized to 5","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":"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/SendPSA.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":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#dangerous-workflow"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#cii-best-practices"}},{"name":"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":"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":"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/ugit/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/ugit/GitPub.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/SendPSA.yml:11: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/SendPSA.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/SendPSA.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/SendPSA.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/ugit/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/ugit/TestAndPublish.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:188: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:198: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:575: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:577: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/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/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:584: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:591: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:593: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:595: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:597: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:600: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:603: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:611: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:617: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:623: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/TestAndPublish.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/TestAndPublish.yml:631: update your workflow using https://app.stepsecurity.io/secureworkflow/StartAutomating/ugit/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   7 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of  15 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":"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":"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":"Packaging","score":10,"reason":"packaging workflow detected","details":["Info: Project packages its releases by way of GitHub Actions.: .github/workflows/TestAndPublish.yml:570"],"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":"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:53.956Z","repository_id":38274744,"created_at":"2025-08-16T05:52:53.956Z","updated_at":"2025-08-16T05:52:53.956Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279898929,"owners_count":26241025,"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":[{"name":"v0.4.5.1","sha":"ff1e4dd2809e2071663f7f07e054d1026716d0dc","kind":"tag","published_at":"2024-12-07T00:15:49.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.4.5.1","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.4.5.1","dependencies_parsed_at":"2024-12-08T08:09:33.824Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.4.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.5.1/manifests"},{"name":"v0.4.5","sha":"4a2a585a63e4d46d05a42b0e8bf7fa79fe146840","kind":"tag","published_at":"2024-10-16T02:16:51.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.4.5","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.4.5","dependencies_parsed_at":"2024-10-17T08:41:54.006Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.4.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.5/manifests"},{"name":"v0.4.4","sha":"613110b9b81b590faff384c6ad65464d1324711a","kind":"tag","published_at":"2024-04-16T18:51:39.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.4.4","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.4.4","dependencies_parsed_at":"2024-04-18T05:49:43.043Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.4/manifests"},{"name":"v0.4.3","sha":"c3033a236024c0eaddb1e554f698277a93778d73","kind":"tag","published_at":"2024-02-28T22:29:35.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.4.3","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.4.3","dependencies_parsed_at":"2024-03-01T04:17:14.791Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.3/manifests"},{"name":"v0.4.2","sha":"dd8be6dcccba85017cb14c8e3e461337e19bb557","kind":"tag","published_at":"2023-11-04T22:59:53.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.4.2","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.4.2","dependencies_parsed_at":"2023-11-06T04:18:56.886Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.2/manifests"},{"name":"v0.4.1","sha":"80a4d9c380da1f288c81621669abcb26c5271098","kind":"tag","published_at":"2023-10-05T06:52:19.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.4.1","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.4.1","dependencies_parsed_at":"2023-10-12T07:22:05.407Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4.1/manifests"},{"name":"v0.4","sha":"4ac0a7707c9a0bccb823d3299195f00dc7c61235","kind":"tag","published_at":"2023-05-14T00:45:30.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.4","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.4","dependencies_parsed_at":"2023-06-02T00:39:21.206Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.4/manifests"},{"name":"v0.3.9","sha":"5c994104206c11dccb1b77d0ee96fcfe91720578","kind":"tag","published_at":"2023-04-24T21:24:40.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3.9","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3.9","dependencies_parsed_at":"2023-06-02T00:39:21.161Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.9/manifests"},{"name":"v0.3.8","sha":"fae43e6992bce542df13424dc3a7d8f873473b92","kind":"tag","published_at":"2023-03-29T20:29:25.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3.8","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3.8","dependencies_parsed_at":"2023-06-02T00:39:21.167Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.8/manifests"},{"name":"v0.3.7","sha":"82902865d60d8f6b6850a3dabc0660e3f7b09942","kind":"tag","published_at":"2023-03-09T01:22:35.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3.7","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3.7","dependencies_parsed_at":"2023-06-02T00:39:21.203Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.7/manifests"},{"name":"v0.3.6","sha":"aebf58a14600f0ed8452ebcaccfb58b9c286499f","kind":"tag","published_at":"2023-02-08T04:29:40.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3.6","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3.6","dependencies_parsed_at":"2023-06-02T00:39:21.115Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.6/manifests"},{"name":"v0.3.5","sha":"4de6bfc31ad2104a8792bf4e07329d071e703c63","kind":"tag","published_at":"2023-02-05T07:38:24.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3.5","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3.5","dependencies_parsed_at":"2023-06-02T00:39:21.158Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.5/manifests"},{"name":"v0.3.4","sha":"a973c1d5ab143dcf007761fa3396da3d9593355e","kind":"tag","published_at":"2023-01-28T01:49:05.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3.4","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3.4","dependencies_parsed_at":"2023-06-01T14:18:43.277Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.4/manifests"},{"name":"v0.3.3","sha":"f79e37c3fcc011d6ed0dad0258453d8a49d9e1c6","kind":"tag","published_at":"2023-01-18T03:37:35.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3.3","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3.3","dependencies_parsed_at":"2023-06-01T14:18:43.706Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.3/manifests"},{"name":"v0.3.2","sha":"bbd1313e3f7c1305c458d23a7318822d4b8452aa","kind":"tag","published_at":"2022-11-29T23:03:20.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3.2","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3.2","dependencies_parsed_at":"2023-05-31T20:56:32.750Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.2/manifests"},{"name":"v0.3.1","sha":"974d19209aae976003da5129a831fc42c61fa0e9","kind":"tag","published_at":"2022-10-30T06:10:22.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3.1","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3.1","dependencies_parsed_at":"2023-05-31T18:53:46.147Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3.1/manifests"},{"name":"v0.3","sha":"3e0649e5215a8266929ba60b407587cf011c74a9","kind":"tag","published_at":"2022-10-13T05:59:21.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.3","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.3","dependencies_parsed_at":"2023-05-31T18:53:46.610Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.3/manifests"},{"name":"v0.2.9","sha":"836f41c2d766041cdd7e3cbf81c9993938c60a78","kind":"tag","published_at":"2022-10-01T22:56:50.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.9","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.9","dependencies_parsed_at":"2023-05-31T15:46:25.593Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.9/manifests"},{"name":"v0.2.8","sha":"6f4217c8cc5dfbb64d4cd94da1dc00c9510bbdee","kind":"tag","published_at":"2022-08-13T19:35:11.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.8","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.8","dependencies_parsed_at":"2023-05-30T19:39:56.613Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.8/manifests"},{"name":"v0.2.7","sha":"6a89cb573f03953bdad78097d865cfb03b5d9e4c","kind":"tag","published_at":"2022-07-29T20:23:54.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.7","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.7","dependencies_parsed_at":"2023-05-30T19:39:56.825Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.7/manifests"},{"name":"v0.2.6","sha":"1d0d970f52c110a64dc28fb4027945accae02e9d","kind":"tag","published_at":"2022-07-24T04:08:04.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.6","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.6","dependencies_parsed_at":"2023-05-30T19:39:57.089Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.6/manifests"},{"name":"v0.2.5","sha":"fe99440d9863b2fd80490210493d305404c03f20","kind":"tag","published_at":"2022-07-18T18:47:44.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.5","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.5","dependencies_parsed_at":"2023-05-30T19:39:57.384Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.5/manifests"},{"name":"v0.2.4","sha":"ae6b06f57640d7f3c31726ea318082ac7172ff11","kind":"tag","published_at":"2022-07-16T19:50:53.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.4","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.4","dependencies_parsed_at":"2023-05-30T19:39:57.676Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.4/manifests"},{"name":"v0.2.3","sha":"2a75a4504272f0283fd908d8a42af3ae0e31527b","kind":"tag","published_at":"2022-07-07T02:21:57.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.3","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.3","dependencies_parsed_at":"2023-05-30T19:39:57.924Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.3/manifests"},{"name":"v0.2.2","sha":"18ffe62df19ac93a8c1feebe12fe849ff75445f3","kind":"tag","published_at":"2022-06-29T01:22:50.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.2","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.2","dependencies_parsed_at":"2023-05-30T19:39:58.195Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.2/manifests"},{"name":"v0.2.1","sha":"53292ff3a947128fef96f0c7bbeba2b022c1c887","kind":"tag","published_at":"2022-06-25T21:11:46.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.1","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.1","dependencies_parsed_at":"2023-05-30T19:39:58.742Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.1/manifests"},{"name":"v0.2.0","sha":"dac5e39aab45f6ce0c6383bb741aa3388a7911d5","kind":"tag","published_at":"2022-06-25T04:45:47.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.2.0","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.2.0","dependencies_parsed_at":"2023-05-30T19:39:59.289Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.2.0/manifests"},{"name":"v0.1.9.1","sha":"ddf0b2e0d44cdc877b62c252c50a1eec3aede489","kind":"tag","published_at":"2022-06-08T01:34:16.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.9.1","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.9.1","dependencies_parsed_at":"2023-05-30T19:39:59.879Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.9.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.9.1/manifests"},{"name":"v0.1.9","sha":"e717acdba43318677797484dba981e3b2c7593c1","kind":"tag","published_at":"2022-04-25T02:57:36.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.9","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.9","dependencies_parsed_at":"2023-05-30T19:40:00.334Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.9/manifests"},{"name":"v0.1.8","sha":"c070677d00fb48bde153f1b72d0d538c07ae8e8f","kind":"tag","published_at":"2022-04-12T22:44:16.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.8","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.8","dependencies_parsed_at":"2023-05-30T19:40:00.577Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.8/manifests"},{"name":"v0.1.7","sha":"7e7832c83f39235232e9ce2222efff53dc602e37","kind":"tag","published_at":"2022-04-10T20:37:07.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.7","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.7","dependencies_parsed_at":"2023-05-30T19:40:00.889Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.7/manifests"},{"name":"v0.1.6","sha":"68b386c3a49d24f7ac9aebbc1c56040310aa3f39","kind":"tag","published_at":"2022-04-09T20:38:41.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.6","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.6","dependencies_parsed_at":"2023-05-30T19:40:01.232Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.6/manifests"},{"name":"v0.1.5","sha":"2a2fabf62db571c947fddcc06ce2973e3a114c20","kind":"tag","published_at":"2022-04-04T21:21:56.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.5","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.5","dependencies_parsed_at":"2023-05-30T19:40:01.588Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.5/manifests"},{"name":"v0.1.4","sha":"303d4aaefe3e5543091cf7e5d41b507601696e0e","kind":"tag","published_at":"2022-03-26T22:50:23.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.4","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.4","dependencies_parsed_at":"2023-05-30T19:40:01.983Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.4/manifests"},{"name":"v0.1.3","sha":"3d9f545da0102be7c213a3e9c57d27c3855e58c1","kind":"tag","published_at":"2022-03-25T03:19:53.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.3","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.3","dependencies_parsed_at":"2023-05-30T19:40:02.273Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.3/manifests"},{"name":"v0.1.2","sha":"4bdb2158a2cd2ce1188ae9b17496198f5e8588a4","kind":"tag","published_at":"2022-03-22T05:08:11.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.2","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.2","dependencies_parsed_at":"2023-05-30T19:40:02.835Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.2/manifests"},{"name":"v0.1.1","sha":"75bb371ea5527cc1c4a1f5bdc9f5d2932cea167c","kind":"tag","published_at":"2022-03-21T07:36:34.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1.1","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1.1","dependencies_parsed_at":"2023-05-30T19:40:03.179Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1.1/manifests"},{"name":"v0.1","sha":"a2fe169934af0d249a6ec5aed47263272d702c2e","kind":"tag","published_at":"2022-03-20T11:11:37.000Z","download_url":"https://codeload.github.com/StartAutomating/ugit/tar.gz/v0.1","html_url":"https://github.com/StartAutomating/ugit/releases/tag/v0.1","dependencies_parsed_at":"2023-05-30T19:40:03.516Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ugit@v0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Fugit/tags/v0.1/manifests"}]},"repo_metadata_updated_at":"2025-10-19T20:14:16.426Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":40.26221692491061,"dependent_packages_count":0.0,"stargazers_count":5.276122367898291,"forks_count":12.99172014764074,"docker_downloads_count":null,"average":14.63251486011241},"purl":"pkg:githubactions/StartAutomating/ugit","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/ugit","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/ugit","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/ugit/dependencies","status":null,"funding_links":["https://github.com/sponsors/StartAutomating"],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-31T16:13:19.203Z","issues_count":79,"pull_requests_count":36,"avg_time_to_close_issue":1098492.791044776,"avg_time_to_close_pull_request":28496.29411764706,"issues_closed_count":67,"pull_requests_closed_count":34,"pull_request_authors_count":4,"issue_authors_count":5,"avg_comments_per_issue":0.11392405063291139,"avg_comments_per_pull_request":0.08333333333333333,"merged_pull_requests_count":34,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":12,"past_year_pull_requests_count":3,"past_year_avg_time_to_close_issue":395441.5,"past_year_avg_time_to_close_pull_request":276952.0,"past_year_issues_closed_count":2,"past_year_pull_requests_closed_count":1,"past_year_pull_request_authors_count":2,"past_year_issue_authors_count":4,"past_year_avg_comments_per_issue":0.0,"past_year_avg_comments_per_pull_request":0.3333333333333333,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":1,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/startautomating%2Fugit/issues","maintainers":[{"login":"StartAutomating","count":199,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}],"active_maintainers":[{"login":"StartAutomating","count":13,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2Fugit/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2Fugit/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2Fugit/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2Fugit/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2Fugit/codemeta","maintainers":[]}