{"id":6326597,"name":"StartAutomating/EZOut","ecosystem":"actions","description":"Generate Formatting and Types .ps1xml for PowerShell Modules, using EZOut","homepage":"https://ezout.start-automating.com","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/StartAutomating/EZOut","keywords_array":["formatting-output","powershell","powershell-module"],"namespace":"StartAutomating","versions_count":26,"first_release_published_at":"2014-05-05T06:40:47.000Z","latest_release_published_at":"2024-04-16T03:31:56.000Z","latest_release_number":"v2.0.6","last_synced_at":"2026-04-16T09:20:19.329Z","created_at":"2023-02-13T13:21:12.027Z","updated_at":"2026-04-16T09:20:19.330Z","registry_url":"https://github.com/StartAutomating/EZOut","install_command":null,"documentation_url":null,"metadata":{"name":"UseEZOut","description":"Generate Formatting and Types .ps1xml for PowerShell Modules, using EZOut","inputs":{"EZOutScript":{"required":false,"description":"A PowerShell Script that uses EZOut.  \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"},"SkipEZOutPS1":{"required":false,"description":"If set, will not process any files named *.EZOut.ps1"},"ModuleName":{"required":false,"description":"The name of the module for which types and formats are being generated.\nIf not provided, this will be assumed to be the name of the root directory.\n"},"CommitMessage":{"required":false,"description":"If provided, will commit any remaining changes made to the workspace with this commit message."},"UserEmail":{"required":false,"description":"The user email associated with a git commit."},"UserName":{"required":false,"description":"The user name associated with a git commit."}},"branding":{"icon":"code","color":"blue"},"runs":{"using":"composite","steps":[{"name":"EZOutAction","id":"EZOutAction","shell":"pwsh","env":{"SkipEZOutPS1":"${{inputs.SkipEZOutPS1}}","UserName":"${{inputs.UserName}}","UserEmail":"${{inputs.UserEmail}}","CommitMessage":"${{inputs.CommitMessage}}","EZOutScript":"${{inputs.EZOutScript}}","ModuleName":"${{inputs.ModuleName}}"},"run":"$Parameters = @{}\n$Parameters.EZOutScript = ${env:EZOutScript}\n$Parameters.SkipEZOutPS1 = ${env:SkipEZOutPS1}\n$Parameters.SkipEZOutPS1 = $parameters.SkipEZOutPS1 -match 'true';\n$Parameters.ModuleName = ${env:ModuleName}\n$Parameters.CommitMessage = ${env:CommitMessage}\n$Parameters.UserEmail = ${env:UserEmail}\n$Parameters.UserName = ${env:UserName}\nforeach ($k in @($parameters.Keys)) {\n    if ([String]::IsNullOrEmpty($parameters[$k])) {\n        $parameters.Remove($k)\n    }\n}\nWrite-Host \"::debug:: EZOutAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for EZOut\n.Description\n    GitHub Action for EZOut.  This will:\n\n    * Import EZOut\n    * Run all *.EZOut.ps1 files beneath the workflow directory\n    * Run a .EZOutScript parameter\n    * If a Formatting or Types directory is found, and an .ezout file is not, run the output of Write-EZFormatFile\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 EZOut.  \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$EZOutScript,\n\n# If set, will not process any files named *.EZOut.ps1\n[switch]\n$SkipEZOutPS1,\n\n# The name of the module for which types and formats are being generated.\n# If not provided, this will be assumed to be the name of the root directory.\n[string]\n$ModuleName,\n\n# If provided, will commit any remaining changes made to the workspace with this commit message.\n[string]\n$CommitMessage,\n\n# The user email associated with a git commit.\n[string]\n$UserEmail,\n\n# The user name associated with a git commit.\n[string]\n$UserName\n)\n\n#region Initial Logging\n\n# Output the parameters passed to this script (for debugging)\n\"::group::Parameters\" | Out-Host\n[PSCustomObject]$PSBoundParameters | Format-List | Out-Host\n\"::endgroup::\" | Out-Host\n\n# Get the GitHub Event\n$gitHubEvent = \n    if ($env:GITHUB_EVENT_PATH) {\n        [IO.File]::ReadAllText($env:GITHUB_EVENT_PATH) | ConvertFrom-Json\n    } else { $null }\n\n# Log the GitHub Event\n@\"\n::group::GitHubEvent\n$($gitHubEvent | ConvertTo-Json -Depth 100)\n::endgroup::\n\"@ | Out-Host\n\n# Check that there is a workspace (and throw if there is not)\nif (-not $env:GITHUB_WORKSPACE) { throw \"No GitHub workspace\" }\n\n#endregion Initial Logging\n\n#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    \"::warning::Not on a branch\" | Out-Host\n    return\n}\n\n# Check for a detached head before we try to pull\n$checkDetached = git symbolic-ref -q HEAD\nif (-not $LASTEXITCODE) {\n    git pull | Out-Host\n}\n\n#region Load Action Module\n$ActionModuleName     = \"EZOut\"\n$ActionModuleFileName = \"$ActionModuleName.psd1\"\n\n# Try to find a local copy of the action's module.\n# This allows the action to use the current branch's code instead of the action's implementation.\n$PSD1Found = Get-ChildItem -Recurse -Filter \"*.psd1\" |\n    Where-Object Name -eq $ActionModuleFileName | \n    Select-Object -First 1\n\n$ActionModulePath, $ActionModule = \n    # If there was a .PSD1 found\n    if ($PSD1Found) {\n        $PSD1Found.FullName # import from there.\n        Import-Module $PSD1Found.FullName -Force -PassThru\n    } \n    # Otherwise, if we have a GITHUB_ACTION_PATH\n    elseif ($env:GITHUB_ACTION_PATH) \n    {\n        $actionModulePath = Join-Path $env:GITHUB_ACTION_PATH $ActionModuleFileName\n        if (Test-path $actionModulePath) {\n            $actionModulePath\n            Import-Module $actionModulePath -Force -PassThru\n        } else {\n            throw \"$actionModuleName not found\"\n        }\n    } \n    elseif (-not (Get-Module $ActionModuleName)) {\n        throw \"$actionModulePath could not be loaded.\"\n    }\n\n\"::notice title=ModuleLoaded::$actionModuleName Loaded from Path - $($actionModulePath)\" | Out-Host\n#endregion Load Action Module\n\n#region Declare Functions and Variables\n$anyFilesChanged = $false\nfilter ProcessScriptOutput {\n    $out = $_\n    $outItem = Get-Item -Path $out -ErrorAction SilentlyContinue\n    $fullName, $shouldCommit = \n        if ($out -is [IO.FileInfo]) {\n            $out.FullName, (git status $out.Fullname -s)\n        } elseif ($outItem) {\n            $outItem.FullName, (git status $outItem.Fullname -s)\n        }\n    if ($shouldCommit) {\n        git add $fullName\n        if ($out.Message) {\n            git commit -m \"$($out.Message)\"\n        } elseif ($out.CommitMessage) {\n            git commit -m \"$($out.CommitMessage)\"\n        } elseif ($gitHubEvent.head_commit.message) {\n            git commit -m \"$($gitHubEvent.head_commit.message)\"\n        }\n        $anyFilesChanged = $true\n    }\n    $out\n}\n\n#endregion Declare Functions and Variables\n\n\n#region Actual Action\n\n$EZOutScriptStart = [DateTime]::Now\nif ($EZOutScript) {\n    Invoke-Expression -Command $EZOutScript |\n        . processScriptOutput |\n        Out-Host\n}\n$EZOutScriptTook = [Datetime]::Now - $EZOutScriptStart\n# \"::set-output name=EZOutScriptRuntime::$($EZOutScriptTook.TotalMilliseconds)\"   | Out-Host\n\n$EZOutPS1Start = [DateTime]::Now\n$EZOutPS1List  = @()\nif (-not $SkipEZOutPS1) {\n    $ezOutFiles = @(\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n        Where-Object Name -Match '\\.EZ(Out|Format)\\.ps1$')\n        \n    if ($ezOutFiles) {\n        $ezOutFiles|        \n        ForEach-Object {\n            $EZOutPS1List += $_.FullName.Replace($env:GITHUB_WORKSPACE, '').TrimStart('/')\n            $EZOutPS1Count++\n            \"::notice title=Running::$($_.Fullname)\" | Out-Host\n            . $_.FullName |            \n                . processScriptOutput  | \n                Out-Host\n        }\n    } else {\n        \"::notice title=No EZOut File Found, generating one\" | Out-Host\n        if (-not $ModuleName) {\n            \"::notice title=No ModuleName provided, default to repository name\" | Out-Host\n            $ModuleName = $gitHubEvent.repository.Name\n        }\n        $TemporaryEzOutFilePath = Join-Path $pwd \"$moduleName.ezout.ps1\"          \n        Write-EZFormatFile -ModuleName $ModuleName | Set-Content $TemporaryEzOutFilePath -Encoding utf8\n        \u0026 $TemporaryEzOutFilePath |\n            . ProcessScriptOutput |\n            Out-Host\n        $anyFilesChanged = $true\n    }\n}\n\n$EZOutPS1EndStart = [DateTime]::Now\n$EZOutPS1Took = [Datetime]::Now - $EZOutPS1Start\n# \"::set-output name=EZOutPS1Count::$($EZOutPS1List.Length)\"   | Out-Host\n# \"::set-output name=EZOutPS1Files::$($EZOutPS1List -join ';')\"   | Out-Host\n# \"::set-output name=EZOutPS1Runtime::$($EZOutPS1Took.TotalMilliseconds)\"   | Out-Host\nif ($CommitMessage -or $anyFilesChanged) {\n    if ($CommitMessage) {\n        dir $env:GITHUB_WORKSPACE -Recurse |\n            ForEach-Object {\n                $gitStatusOutput = git status $_.Fullname -s\n                if ($gitStatusOutput) {\n                    git add $_.Fullname\n                }\n            }\n\n        git commit -m $ExecutionContext.SessionState.InvokeCommand.ExpandString($CommitMessage)\n    }    \n\n    $checkDetached = git symbolic-ref -q HEAD\n    if (-not $LASTEXITCODE) {\n        \"::notice::Pulling Updates\" | Out-Host\n        git pull\n        \"::notice::Pushing Changes\" | Out-Host        \n        git push        \n        \"Git Push Output: $($gitPushed  | Out-String)\"\n    } else {\n        \"::notice::Not pushing changes (on detached head)\" | Out-Host\n        $LASTEXITCODE = 0\n        exit 0\n    }\n}\n\n#endregion Actual Action\n} @Parameters\n"}]},"default_branch":"master","path":null},"repo_metadata":{"id":16690107,"uuid":"19446553","full_name":"StartAutomating/EZOut","owner":"StartAutomating","description":"EZOut is a PowerShell module to help take the pain out of writing format and types XML","archived":false,"fork":false,"pushed_at":"2024-09-27T00:40:35.000Z","size":23573,"stargazers_count":69,"open_issues_count":48,"forks_count":8,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-04T18:46:11.391Z","etag":null,"topics":["formatting-output","powershell","powershell-module"],"latest_commit_sha":null,"homepage":"https://ezout.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":"contributing.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"Security.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["StartAutomating"]}},"created_at":"2014-05-05T06:39:32.000Z","updated_at":"2025-08-02T15:10:33.000Z","dependencies_parsed_at":"2024-10-30T20:21:40.203Z","dependency_job_id":null,"html_url":"https://github.com/StartAutomating/EZOut","commit_stats":{"total_commits":661,"total_committers":2,"mean_commits":330.5,"dds":"0.40090771558245086","last_synced_commit":"1a1a7dda8f925e688e42d9de1c5138522c34f596"},"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/StartAutomating/EZOut","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268771625,"owners_count":24305057,"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-08-04T02:00:09.867Z","response_time":79,"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-07-27T19:51:01.136Z","metadata":{"has_sponsors_listing":true},"html_url":"https://github.com/StartAutomating","funding_links":["https://github.com/sponsors/StartAutomating"],"total_stars":1292,"followers":509,"following":53,"created_at":"2022-11-08T04:14:46.274Z","updated_at":"2025-07-27T19:51:01.136Z","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":"v2.0.6","sha":"de5f23aa91f883a83c64972684ffc9e5abc1b414","kind":"tag","published_at":"2024-04-16T03:31:56.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v2.0.6","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v2.0.6","dependencies_parsed_at":"2024-04-17T05:21:38.787Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v2.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.6/manifests"},{"name":"v2.0.5","sha":"9f4c082c28119713fdd93c78f70cf1265f3ebef4","kind":"tag","published_at":"2024-03-08T22:52:41.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v2.0.5","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v2.0.5","dependencies_parsed_at":"2024-03-10T04:18:40.888Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v2.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.5/manifests"},{"name":"v2.0.4","sha":"258b434e332ec3e341ee86f924c2d0eb4e9bb096","kind":"tag","published_at":"2024-02-07T20:34:02.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v2.0.4","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v2.0.4","dependencies_parsed_at":"2024-02-11T04:54:46.791Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v2.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.4/manifests"},{"name":"v2.0.3","sha":"e981f8e96bb1104bcac198216ea8f9b1af6525a1","kind":"tag","published_at":"2023-11-05T21:56:24.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v2.0.3","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v2.0.3","dependencies_parsed_at":"2023-11-07T04:36:15.799Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v2.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.3/manifests"},{"name":"v2.0.2","sha":"01e9fddee1fa7bfb66330df9b05848b215f222da","kind":"tag","published_at":"2023-11-01T18:34:52.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v2.0.2","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v2.0.2","dependencies_parsed_at":"2023-11-03T04:28:25.360Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v2.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.2/manifests"},{"name":"v2.0.1","sha":"b4cdb58201d6a241cde2320af8b44b1f610200da","kind":"tag","published_at":"2023-08-21T00:27:16.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v2.0.1","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v2.0.1","dependencies_parsed_at":"2023-08-22T04:30:24.072Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v2.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0.1/manifests"},{"name":"v2.0","sha":"4ffc2a8e13cc286c49c9ef46ae68fa3b820fe734","kind":"tag","published_at":"2023-07-20T05:45:36.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v2.0","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v2.0","dependencies_parsed_at":"2023-07-24T04:26:35.934Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v2.0/manifests"},{"name":"v1.9.9","sha":"1967c0526e6bd21b9e507191fa3c246428bf2ef2","kind":"tag","published_at":"2022-12-15T05:54:59.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.9","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.9","dependencies_parsed_at":"2023-07-20T14:15:53.964Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.9/manifests"},{"name":"v1.9.8","sha":"aef9cd1a9883af5b10338a372d498ccf633cbdbe","kind":"tag","published_at":"2022-12-15T03:34:14.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.8","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.8","dependencies_parsed_at":"2023-07-20T14:15:53.989Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.8/manifests"},{"name":"v1.9.7","sha":"d026ea2b7d6eac6ea1300c27dcdd7b69f8b2570f","kind":"tag","published_at":"2022-10-20T03:00:30.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.7","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.7","dependencies_parsed_at":"2023-07-20T14:15:54.123Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.7/manifests"},{"name":"v1.9.6","sha":"29b380149bf0a01015ab43b412bf7dd71c62c5f0","kind":"tag","published_at":"2022-10-06T02:32:42.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.6","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.6","dependencies_parsed_at":"2023-07-20T14:15:54.399Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.6/manifests"},{"name":"v1.9.5","sha":"55145bd6eea4a577dc528657d4303cc275bcf056","kind":"tag","published_at":"2022-10-02T06:34:19.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.5","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.5","dependencies_parsed_at":"2023-07-20T14:15:53.421Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.5/manifests"},{"name":"v1.9.4","sha":"3eaa45178a46b80d98c54e6c8b5031b588c873a0","kind":"tag","published_at":"2022-09-25T23:55:56.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.4","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.4","dependencies_parsed_at":"2023-07-20T14:15:53.994Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.4/manifests"},{"name":"v1.9.3","sha":"87b3713751995fd755cefa72f23172abb00d2e6e","kind":"tag","published_at":"2022-09-19T01:08:56.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.3","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.3","dependencies_parsed_at":"2023-07-20T14:15:53.591Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.3/manifests"},{"name":"v1.9.2","sha":"86f30dbc697e89458c31baae845f2b8b3c52326a","kind":"tag","published_at":"2022-09-15T20:06:51.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.2","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.2","dependencies_parsed_at":"2023-07-20T14:15:54.200Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.2/manifests"},{"name":"v1.9.1","sha":"1dbf7e21dd460cc764b15920d596205daf6b6cd0","kind":"tag","published_at":"2022-09-12T04:31:18.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.1","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.1","dependencies_parsed_at":"2023-07-20T14:15:53.558Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.1/manifests"},{"name":"v1.9.0","sha":"209ec806ec26a654ee02ba31b442683e71a2b585","kind":"tag","published_at":"2022-08-11T04:29:25.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.9.0","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.9.0","dependencies_parsed_at":"2023-07-20T14:15:54.223Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.9.0/manifests"},{"name":"v1.8.9","sha":"bc4e5ba9a1ae1f914a36463288f6c32a1d71ecf7","kind":"tag","published_at":"2022-08-09T00:26:34.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.8.9","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.8.9","dependencies_parsed_at":"2023-07-20T14:15:54.065Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.8.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.9/manifests"},{"name":"v1.8.8.1","sha":"1acac5c8835647e65fed60aecb321f3f01a5488b","kind":"tag","published_at":"2022-08-07T23:39:56.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.8.8.1","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.8.8.1","dependencies_parsed_at":"2023-07-20T14:15:53.938Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.8.8.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.8.1/manifests"},{"name":"v1.8.8","sha":"ba0a9dc37e84b24f0a006e63a2ebdb04611a5e69","kind":"tag","published_at":"2022-07-26T04:53:56.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.8.8","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.8.8","dependencies_parsed_at":"2023-07-20T14:15:53.917Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.8.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.8/manifests"},{"name":"v1.8.7","sha":"f65a7889c39d90f6acc6473b7c2ee8fc22bafb3e","kind":"tag","published_at":"2022-07-25T00:15:48.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.8.7","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.8.7","dependencies_parsed_at":"2023-07-20T14:15:53.569Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.8.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.7/manifests"},{"name":"v1.8.6","sha":"21cf8871f28536b2d5d4ece5d162c70c62a3d637","kind":"tag","published_at":"2022-04-19T19:19:46.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.8.6","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.8.6","dependencies_parsed_at":"2023-07-20T14:15:53.322Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.8.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.6/manifests"},{"name":"v1.8.5","sha":"8d79515e449b474e4c7146b184b253f1d7073fc3","kind":"tag","published_at":"2021-03-11T06:54:50.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.8.5","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.8.5","dependencies_parsed_at":"2023-07-20T14:15:53.222Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.8.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.5/manifests"},{"name":"v1.8.4","sha":"687401e8a3cafa0f074c88b33a160892c2aacfa6","kind":"commit","published_at":"2021-01-19T06:02:34.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.8.4","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.8.4","dependencies_parsed_at":"2023-07-20T14:15:53.450Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.8.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.8.4/manifests"},{"name":"v1.6","sha":"b7e9948bcd242c867fd2d686b5c4d04e774a34ee","kind":"commit","published_at":"2020-02-24T07:14:30.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.6","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.6","dependencies_parsed_at":"2023-07-20T14:15:53.233Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.6/manifests"},{"name":"v1.4","sha":"db2a9827486682b45a62b161f32367cd5f5cf364","kind":"commit","published_at":"2014-05-05T06:40:47.000Z","download_url":"https://codeload.github.com/StartAutomating/EZOut/tar.gz/v1.4","html_url":"https://github.com/StartAutomating/EZOut/releases/tag/v1.4","dependencies_parsed_at":"2023-07-20T14:15:53.027Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/EZOut@v1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FEZOut/tags/v1.4/manifests"}]},"repo_metadata_updated_at":"2025-08-04T20:44:27.026Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":16,"rankings":{"downloads":null,"dependent_repos_count":10.147361749326572,"dependent_packages_count":0.0,"stargazers_count":3.812391063222944,"forks_count":8.25859610204405,"docker_downloads_count":null,"average":5.5545872286483915},"purl":"pkg:githubactions/StartAutomating/EZOut","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/EZOut","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/EZOut","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/EZOut/dependencies","status":null,"funding_links":["https://github.com/sponsors/StartAutomating"],"critical":null,"issue_metadata":{"last_synced_at":"2025-04-30T21:43:03.646Z","issues_count":253,"pull_requests_count":50,"avg_time_to_close_issue":2405050.475935829,"avg_time_to_close_pull_request":1102376.06,"issues_closed_count":187,"pull_requests_closed_count":50,"pull_request_authors_count":2,"issue_authors_count":12,"avg_comments_per_issue":0.1422924901185771,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":47,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":47,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":8683706.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":4,"past_year_avg_comments_per_issue":0.425531914893617,"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%2FEZOut/issues","maintainers":[{"login":"StartAutomating","count":232,"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%2FEZOut/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FEZOut/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FEZOut/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FEZOut/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FEZOut/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FEZOut/codemeta","maintainers":[]}