{"id":7748158,"name":"StartAutomating/Irregular","ecosystem":"actions","description":"Regular Expressions Made Strangle Simple","homepage":"https://irregular.start-automating.com/","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/StartAutomating/Irregular","keywords_array":["powershell","powershell-modules","regex","regexp","regular-expression"],"namespace":"StartAutomating","versions_count":21,"first_release_published_at":"2021-05-15T23:56:40.000Z","latest_release_published_at":"2024-04-16T02:48:50.000Z","latest_release_number":"v0.7.9","last_synced_at":"2026-06-01T22:01:24.633Z","created_at":"2023-05-17T11:41:20.047Z","updated_at":"2026-06-01T22:01:24.633Z","registry_url":"https://github.com/StartAutomating/Irregular","install_command":null,"documentation_url":null,"metadata":{"name":"UseIrregular","description":"Regular Expressions Made Strangle Simple","inputs":{"IrregularScript":{"required":false,"description":"A PowerShell Script that uses Irregular.  \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"},"SkipIrregularPS1":{"required":false,"description":"If set, will not process any files named *.irregular.ps1"},"SkipRegexSource":{"required":false,"description":"If set, will not process any files named *.regex.source.ps1"},"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":"cpu","color":"blue"},"runs":{"using":"composite","steps":[{"name":"Irregular","id":"Irregular","shell":"pwsh","env":{"IrregularScript":"${{inputs.IrregularScript}}","CommitMessage":"${{inputs.CommitMessage}}","SkipIrregularPS1":"${{inputs.SkipIrregularPS1}}","UserEmail":"${{inputs.UserEmail}}","UserName":"${{inputs.UserName}}","SkipRegexSource":"${{inputs.SkipRegexSource}}"},"run":"$Parameters = @{}\n$Parameters.IrregularScript = ${env:IrregularScript}\n$Parameters.SkipIrregularPS1 = ${env:SkipIrregularPS1}\n$Parameters.SkipIrregularPS1 = $parameters.SkipIrregularPS1 -match 'true';\n$Parameters.SkipRegexSource = ${env:SkipRegexSource}\n$Parameters.SkipRegexSource = $parameters.SkipRegexSource -match 'true';\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:: Irregular $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for Irregular\n.Description\n    GitHub Action for Irregular.  This will:\n\n    * Run all *.Irregular.ps1 files beneath the workflow directory\n    * Run all *.Regex.source.ps1 files beneath the workflow directory\n    * Run an .IrregularScript parameter.\n\n    Any files changed can be outputted by the script, and those changes can be checked back into the repo.\n    Make sure to use the \"persistCredentials\" option with checkout.\n#\u003e\n\nparam(\n# A PowerShell Script that uses Irregular.  \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$IrregularScript,\n\n# If set, will not process any files named *.irregular.ps1\n[switch]\n$SkipIrregularPS1,\n\n# If set, will not process any files named *.regex.source.ps1\n[switch]\n$SkipRegexSource,\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$ErrorActionPreference = 'continue'\n\"::group::Parameters\" | Out-Host\n[PSCustomObject]$PSBoundParameters | Format-List | Out-Host\n\"::endgroup::\" | Out-Host\n\n\n$PSD1Found = Get-ChildItem -Recurse -Filter \"*.psd1\" | Where-Object Name -eq 'Irregular.psd1' | Select-Object -First 1\n\nif ($PSD1Found) {\n    $irregularModulePath = $PSD1Found\n    Import-Module $PSD1Found -Force -PassThru | Out-Host\n} if ($env:GITHUB_ACTION_PATH) {\n    $irregularModulePath = Join-Path $env:GITHUB_ACTION_PATH 'Irregular.psd1'\n    if (Test-path $irregularModulePath) {\n        Import-Module $irregularModulePath -Force -PassThru | Out-String\n    } else {\n        throw \"Irregular not found\"\n    }\n} elseif (-not (Get-Module Irregular)) {    \n    throw \"Action Path not found\"\n}\n\n\"::notice title=ModuleLoaded::Irregular Loaded from Path - $($irregularModulePath)\" | Out-Host\n\n$anyFilesChanged = $false\n$processScriptOutput = { process { \n    $out = $_\n    $outItem = Get-Item -Path $out -ErrorAction SilentlyContinue\n    $fullName, $shouldCommit = \n        if ($out -is [IO.FileInfo]) {\n            $out.FullName, (git status $out.Fullname -s)\n        } elseif ($outItem) {\n            $outItem.FullName, (git status $outItem.Fullname -s)\n        }\n    if ($shouldCommit) {\n        git add $fullName\n        if ($out.Message) {\n            git commit -m \"$($out.Message)\"\n        } elseif ($out.CommitMessage) {\n            git commit -m \"$($out.CommitMessage)\"\n        }\n        $anyFilesChanged = $true\n    }\n    $out\n} }\n\n\"::notice title=ModuleLoaded,file=$irregularModulePath::Irregular Loaded from Path\" | Out-Host\n\nif (-not $UserName) { $UserName = $env:GITHUB_ACTOR }\nif (-not $UserEmail) { $UserEmail = \"$UserName@github.com\" }\ngit config --global user.email $UserEmail\ngit config --global user.name  $UserName\n\n\nif (-not $env:GITHUB_WORKSPACE) { throw \"No GitHub workspace\" }\n\nif ($IrregularScript) {\n    \"::notice::Running Irregular Script\" | Out-Host\n    Invoke-Expression -Command $IrregularScript |\n        . $processScriptOutput |\n        Out-Host\n}\n\nif (-not $SkipIrregularPS1) {\n    \"::notice::Running Irregular .ps1\" | Out-Host\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n        Where-Object Name -Match '\\.Irregular\\.ps1$' |\n        ForEach-Object {\n            Write-Information \"::notice file=$($_.FullName)::Running $($_.Name)\"\n            $irregularPs1File = $_\n            try {\n                . $irregularPs1File.FullName |\n                    . $processScriptOutput  |\n                    Out-Host\n            } catch {\n                \"::error::$($_ | Out-String)\" | Out-Host\n            }\n        }\n}\n\nif (-not $SkipRegexSource) {\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n        Where-Object Name -Match '\\.regex\\.source\\.ps1$' |\n        ForEach-Object {\n            Write-Information \"::notice file=$($_.FullName)::Running $($_.Name)\"\n            . $_.FullName |            \n                . $processScriptOutput  | \n                Out-Host\n        }\n}\n\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    \"::notice::Pushing\" | Out-Host\n    $gitPushed =  git push 2\u003e\u00261\n        \n    \"Git Push Output: $($gitPushed  | Out-String)\"\n}} @Parameters\n"}]},"default_branch":"master","path":null},"repo_metadata":{"uuid":"208742462","full_name":"StartAutomating/Irregular","owner":"StartAutomating","description":"Regular Expressions made Strangely Simple","archived":false,"fork":false,"pushed_at":"2023-07-28T19:42:02.000Z","size":1071,"stargazers_count":85,"open_issues_count":10,"forks_count":6,"subscribers_count":5,"default_branch":"master","last_synced_at":"2023-07-28T20:36:45.189Z","etag":null,"topics":["powershell","powershell-modules","regex","regexp","regular-expression"],"latest_commit_sha":null,"homepage":"https://irregular.start-automating.com/","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StartAutomating.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-16T07:56:19.000Z","updated_at":"2023-07-23T10:53:57.000Z","dependencies_parsed_at":"2023-02-17T14:31:01.971Z","dependency_job_id":null,"html_url":"https://github.com/StartAutomating/Irregular","commit_stats":null,"previous_names":[],"tags_count":20,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":149038975,"owners_count":6669222,"icon_url":"https://github.com/github.png","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":"","email":"","website":"http://start-automating.com/","location":"Seattle, WA","twitter":"jamesbru","company":"Start-Automating","icon_url":"https://avatars.githubusercontent.com/u/1043665?u=38888051372474754f0b622ada16d87ce69227ca\u0026v=4","repositories_count":39,"last_synced_at":"2023-02-24T13:57:29.796Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/StartAutomating","created_at":"2022-11-08T04:14:46.274Z","updated_at":"2023-02-24T13:57:29.798Z","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.7.8","sha":"3e1443d887697b1dd7db6f7e08d2efcee0d16be1","kind":"tag","published_at":"2023-07-20T08:18:29.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.7.8","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.7.8","dependencies_parsed_at":"2023-07-22T04:20:54.877Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.8/manifests"},{"name":"v0.7.7","sha":"38633d5b43b2b986d90bb5588edc59545f0323a5","kind":"tag","published_at":"2022-12-15T21:56:13.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.7.7","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.7.7","dependencies_parsed_at":"2023-07-20T13:51:17.378Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.7/manifests"},{"name":"v0.7.6","sha":"9861ccd01c2f15b830338ee7139446eefddfbd43","kind":"tag","published_at":"2022-10-29T01:29:18.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.7.6","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.7.6","dependencies_parsed_at":"2023-07-20T13:51:17.163Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.6/manifests"},{"name":"v0.7.5","sha":"105dc077f13141af5cdb27efd44455e680a8efe9","kind":"tag","published_at":"2022-10-16T00:24:47.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.7.5","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.7.5","dependencies_parsed_at":"2023-07-20T13:51:17.475Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.5/manifests"},{"name":"v0.7.4","sha":"7abe0ffb2cfe1878aae103cddb03c611e124fabc","kind":"tag","published_at":"2022-10-01T21:45:09.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.7.4","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.7.4","dependencies_parsed_at":"2023-07-20T13:51:15.893Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.4/manifests"},{"name":"v0.7.3","sha":"41c3c12e5a2730e84eea8458e1f4faf1e27f85df","kind":"tag","published_at":"2022-09-29T19:49:45.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.7.3","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.7.3","dependencies_parsed_at":"2023-07-20T13:51:16.413Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.3/manifests"},{"name":"v0.7.2","sha":"f3f19376549c274f6451077e0f75fcb476f01f92","kind":"tag","published_at":"2022-09-22T03:24:22.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.7.2","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.7.2","dependencies_parsed_at":"2023-07-20T13:51:16.349Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.2/manifests"},{"name":"v0.7.1","sha":"e7a91939404c958eebfd85ec4df910c418fa05fc","kind":"tag","published_at":"2022-09-18T20:47:02.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.7.1","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.7.1","dependencies_parsed_at":"2023-07-20T13:51:15.865Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.1/manifests"},{"name":"v0.7.0","sha":"f061403581f1bd1ca2b0f556e87522676cdc10b1","kind":"tag","published_at":"2022-09-12T03:54:20.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.7.0","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.7.0","dependencies_parsed_at":"2023-07-20T13:51:17.262Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.7.0/manifests"},{"name":"v0.6.9","sha":"79c588809a6b79497b9cefa57c4bf5ffede586c9","kind":"tag","published_at":"2022-09-06T01:32:34.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6.9","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6.9","dependencies_parsed_at":"2023-07-20T13:51:15.975Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.9/manifests"},{"name":"v0.6.8","sha":"145a8e7797ddbcb5f6a38038e3cc72474e1a9892","kind":"tag","published_at":"2022-08-09T01:46:54.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6.8","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6.8","dependencies_parsed_at":"2023-07-20T13:51:17.569Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.8/manifests"},{"name":"v0.6.7","sha":"6be76fcac9728a4f622f4e2ed2d0bb0f7f6b9649","kind":"tag","published_at":"2022-01-09T02:31:29.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6.7","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6.7","dependencies_parsed_at":"2023-07-20T13:51:16.402Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.7/manifests"},{"name":"v0.6.6","sha":"19bb9e448c8dba43001e6bf404d86edcbedf3f7a","kind":"tag","published_at":"2021-12-28T03:15:40.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6.6","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6.6","dependencies_parsed_at":"2023-07-20T13:51:15.998Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.6/manifests"},{"name":"v0.6.5","sha":"a566fcdbb53554d69434871f66c5ca247bb9217d","kind":"tag","published_at":"2021-11-29T08:59:46.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6.5","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6.5","dependencies_parsed_at":"2023-07-20T13:51:16.422Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.5/manifests"},{"name":"v0.6.4","sha":"2bf98752c5c82bc8a6fa35300d30e816d4d12a4b","kind":"tag","published_at":"2021-11-22T05:52:31.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6.4","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6.4","dependencies_parsed_at":"2023-07-20T13:51:16.154Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.4/manifests"},{"name":"v0.6.3","sha":"ab1898032323e6aa3fd8ccc9a9a08ce18ec5cb65","kind":"tag","published_at":"2021-11-18T06:02:44.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6.3","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6.3","dependencies_parsed_at":"2023-07-20T13:51:16.987Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.3/manifests"},{"name":"v0.6.2","sha":"4ecc77b0113c7ffbb5f5c25aecc92f14d2f8bd38","kind":"tag","published_at":"2021-11-07T20:10:08.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6.2","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6.2","dependencies_parsed_at":"2023-07-20T13:51:16.165Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.2/manifests"},{"name":"v0.6.1","sha":"2f5307cd74541d3cd5ddc0905674b06b818ec2fe","kind":"tag","published_at":"2021-10-24T04:38:10.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6.1","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6.1","dependencies_parsed_at":"2023-07-20T13:51:16.401Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6.1/manifests"},{"name":"v0.6","sha":"03bb3b2bcbf1295ca24ccf923a44dd9d7ae8451a","kind":"tag","published_at":"2021-10-24T04:24:50.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.6","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.6","dependencies_parsed_at":"2023-07-20T13:51:16.053Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.6/manifests"},{"name":"v0.5.8","sha":"5a03319d658290d65491030cfda5d7c7ad24f0d1","kind":"tag","published_at":"2021-05-15T23:56:40.000Z","download_url":"https://codeload.github.com/StartAutomating/Irregular/tar.gz/v0.5.8","html_url":"https://github.com/StartAutomating/Irregular/releases/tag/v0.5.8","dependencies_parsed_at":"2023-07-20T13:51:16.232Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.5.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FIrregular/tags/v0.5.8/manifests"}]},"repo_metadata_updated_at":"2023-07-28T20:37:18.643Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":1,"rankings":{"downloads":null,"dependent_repos_count":24.73459039771827,"dependent_packages_count":0.0,"stargazers_count":2.2690540326414195,"forks_count":8.25225796228807,"docker_downloads_count":null,"average":8.81397559816194},"purl":"pkg:githubactions/StartAutomating/Irregular","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/Irregular","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/Irregular","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/Irregular/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":null,"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FIrregular/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FIrregular/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FIrregular/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FIrregular/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FIrregular/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FIrregular/codemeta","maintainers":[]}