{"id":6326601,"name":"StartAutomating/PSSVG","ecosystem":"actions","description":"Build SVGs in your Workflow (with PowerShell)","homepage":"https://pssvg.start-automating.com/","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/StartAutomating/PSSVG","keywords_array":["github-actions","graphics","graphics-programming","powershell","svg","svg-animations","svg-icons","svg-images"],"namespace":"StartAutomating","versions_count":12,"first_release_published_at":"2022-09-08T07:32:09.000Z","latest_release_published_at":"2023-07-08T04:07:39.000Z","latest_release_number":"v0.2.10","last_synced_at":"2026-04-12T02:16:21.911Z","created_at":"2023-02-13T13:21:30.487Z","updated_at":"2026-04-12T02:16:21.911Z","registry_url":"https://github.com/StartAutomating/PSSVG","install_command":null,"documentation_url":null,"metadata":{"name":"MakePSSVG","description":"Build SVGs in your Workflow (with PowerShell)","inputs":{"PSSVG":{"required":false,"description":"A PowerShell Script that uses PSSVG.  \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"},"SkipPSSVGPS1":{"required":false,"description":"If set, will not process any files named *.PSSVG.ps1"},"SkipBuild":{"required":false,"description":"If set, will not run Build-PSSVG."},"CommitMessage":{"required":false,"description":"If provided, will commit any remaining changes made to the workspace with this commit message.\nIf no commit message is provided, if a GitHub Event contains a commit message, that message will be used.\nIf no commit message is provided, and a commit message cannot be automatically detected, changes will not be committed.\n"},"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":"aperture","color":"blue"},"runs":{"using":"composite","steps":[{"name":"PSSVG","id":"PSSVG","shell":"pwsh","env":{"SkipBuild":"${{inputs.SkipBuild}}","SkipPSSVGPS1":"${{inputs.SkipPSSVGPS1}}","UserName":"${{inputs.UserName}}","PSSVG":"${{inputs.PSSVG}}","CommitMessage":"${{inputs.CommitMessage}}","UserEmail":"${{inputs.UserEmail}}"},"run":"$Parameters = @{}\n$Parameters.PSSVG = ${env:PSSVG}\n$Parameters.SkipPSSVGPS1 = ${env:SkipPSSVGPS1}\n$Parameters.SkipPSSVGPS1 = $parameters.SkipPSSVGPS1 -match 'true';\n$Parameters.SkipBuild = ${env:SkipBuild}\n$Parameters.SkipBuild = $parameters.SkipBuild -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:: PSSVG $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for PSSVG\n.Description\n    GitHub Action for PSSVG.  This will:\n\n    * Import PSSVG\n    * Run all *.PSSVG.ps1 files beneath the workflow directory\n    * Run a .PSSVGScript 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 PSSVG.  \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$PSSVG,\n\n# If set, will not process any files named *.PSSVG.ps1\n[switch]\n$SkipPSSVGPS1,\n\n# If set, will not run Build-PSSVG.\n[switch]\n$SkipBuild,\n\n# If provided, will commit any remaining changes made to the workspace with this commit message.\n# If no commit message is provided, if a GitHub Event contains a commit message, that message will be used.\n# If no commit message is provided, and a commit message cannot be automatically detected, changes will not be committed.\n[string]\n$CommitMessage,\n\n# The user email associated with a git commit.\n[string]\n$UserEmail,\n\n# The user name associated with a git commit.\n[string]\n$UserName\n)\n\n\"::group::Parameters\" | Out-Host\n[PSCustomObject]$PSBoundParameters | Format-List | Out-Host\n\"::endgroup::\" | Out-Host\n\n$gitHubEvent = if ($env:GITHUB_EVENT_PATH) {\n    [IO.File]::ReadAllText($env:GITHUB_EVENT_PATH) | ConvertFrom-Json\n} else { $null }\n\n@\"\n::group::GitHubEvent\n$($gitHubEvent | ConvertTo-Json -Depth 100)\n::endgroup::\n\"@ | Out-Host\n\n$PSD1Found = Get-ChildItem -Recurse -Filter \"*.psd1\" | Where-Object Name -eq 'PSSVG.psd1' | Select-Object -First 1\n\nif ($PSD1Found) {\n    $PSSVGModulePath = $PSD1Found\n    Import-Module $PSD1Found -Force -PassThru | Out-Host\n} elseif ($env:GITHUB_ACTION_PATH) {\n    $PSSVGModulePath = Join-Path $env:GITHUB_ACTION_PATH 'PSSVG.psd1'\n    if (Test-path $PSSVGModulePath) {\n        Import-Module $PSSVGModulePath -Force -PassThru | Out-Host\n    } else {\n        throw \"PSSVG not found\"\n    }\n} elseif (-not (Get-Module PSSVG)) {    \n    throw \"Action Path not found\"\n}\n\n\"::notice title=ModuleLoaded::PSSVG Loaded from Path - $($PSSVGModulePath)\" | Out-Host\n\n$anyFilesChanged = $false\n$processScriptOutput = { process { \n    $out = $_\n    $outItem = Get-Item -Path $out -ErrorAction SilentlyContinue\n    $fullName, $shouldCommit = \n        if ($out -is [IO.FileInfo]) {\n            $out.FullName, (git status $out.Fullname -s)\n        } elseif ($outItem) {\n            $outItem.FullName, (git status $outItem.Fullname -s)\n        }\n    if ($shouldCommit) {\n        git add $fullName\n        if ($out.Message) {\n            git commit -m \"$($out.Message)\"\n        } elseif ($out.CommitMessage) {\n            git commit -m \"$($out.CommitMessage)\"\n        }\n        elseif ($CommitMessage) {\n            git commit -m $CommitMessage   \n        }\n        elseif ($gitHubEvent.head_commit.message) {\n            git commit -m \"$($gitHubEvent.head_commit.message)\"\n        }        \n        $anyFilesChanged = $true\n    }\n    $out\n} }\n\n\nif (-not $UserName) { $UserName = $env:GITHUB_ACTOR }\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\nif (-not $env:GITHUB_WORKSPACE) { throw \"No GitHub workspace\" }\n\n$branchName = git rev-parse --abrev-ref HEAD\nif (-not $branchName) { \n    return\n}\n\n$PSSVGStart = [DateTime]::Now\nif ($PSSVG) {\n    $PSSVG |\n        . $processScriptOutput |\n        Out-Host\n}\n\n$PSSVGTook = [Datetime]::Now - $PSSVGStart\n# \"::set-output name=PSSVGRuntime::$($PSSVGScriptTook.TotalMilliseconds)\" | Out-Host\n\n$PSSVGPS1Start = [DateTime]::Now\n$PSSVGPS1List  = @()\n\nif (-not $SkipPSSVGPS1) {\n    $PSSVGFiles = @(\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n        Where-Object Name -Match '\\.PSSVG\\.ps1$')\n        \n    if ($PSSVGFiles) {\n        $PSSVGFiles |        \n            ForEach-Object {\n                $PSSVGPS1List += $_.FullName.Replace($env:GITHUB_WORKSPACE, '').TrimStart('/')\n                $PSSVGPS1Count++\n                \"::notice title=Running::$($_.Fullname)\" | Out-Host\n                . $_.FullName |            \n                    . $processScriptOutput  | \n                    Out-Host\n            }\n    }\n}\n\n$PSSVGPS1EndStart = [DateTime]::Now\n$PSSVGPS1Took = [Datetime]::Now - $PSSVGPS1Start\n# \"::set-output name=PSSVGPS1Count::$($PSSVGPS1List.Length)\"   | Out-Host\n# \"::set-output name=PSSVGPS1Files::$($PSSVGPS1List -join ';')\"   | Out-Host\n# \"::set-output name=PSSVGPS1Runtime::$($PSSVGPS1Took.TotalMilliseconds)\"   | Out-Host\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\n\n    $checkDetached = git symbolic-ref -q HEAD\n    if (-not $LASTEXITCODE) {\n        \"::notice::Pulling Changes\" | Out-Host\n        git pull | Out-Host\n        \"::notice::Pushing Changes\" | Out-Host\n        git push | Out-Host\n        \"Git Push Output: $($gitPushed  | Out-String)\"\n    } else {\n        \"::notice::Not pushing changes (on detached head)\" | Out-Host\n        $LASTEXITCODE = 0\n        exit 0\n    }\n}\n} @Parameters\n"}]},"default_branch":"main","path":null},"repo_metadata":{"uuid":"534067344","full_name":"StartAutomating/PSSVG","owner":"StartAutomating","description":"Script SVGs with PowerShell","archived":false,"fork":false,"pushed_at":"2023-07-07T20:16:19.000Z","size":48065,"stargazers_count":12,"open_issues_count":10,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2023-07-07T20:30:39.848Z","etag":null,"topics":["github-actions","graphics","graphics-programming","powershell","svg","svg-animations","svg-icons","svg-images"],"latest_commit_sha":null,"homepage":"https://pssvg.start-automating.com/","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StartAutomating.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-08T05:44:23.000Z","updated_at":"2023-07-05T20:34:30.000Z","dependencies_parsed_at":"2023-02-10T21:16:22.077Z","dependency_job_id":null,"html_url":"https://github.com/StartAutomating/PSSVG","commit_stats":{"total_commits":5708,"total_committers":3,"mean_commits":"1902.6666666666667","dds":0.03521373510861947,"last_synced_commit":"15be85a86ab9fd7677df97a6ffe02152d448341e"},"previous_names":[],"tags_count":11,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":144128686,"owners_count":6084297,"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.2.9","sha":"654d3dc83b3a4879448e3cf5612d550c2819d81d","kind":"tag","published_at":"2023-07-04T23:16:29.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2.9","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.9","dependencies_parsed_at":"2023-07-06T07:26:22.156Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.9/manifests"},{"name":"v0.2.8","sha":"9d311decf1f8a4b3832bef38988811d3835381cb","kind":"tag","published_at":"2023-01-12T01:43:45.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2.8","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.8","dependencies_parsed_at":"2023-06-02T00:28:28.920Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.8/manifests"},{"name":"v0.2.7","sha":"3cce2aa8142f623d7b9403c9a2799a4d9d8dbeda","kind":"tag","published_at":"2022-10-22T06:25:38.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2.7","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.7","dependencies_parsed_at":"2023-05-31T18:00:04.113Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.7/manifests"},{"name":"v0.2.6","sha":"e6fac21889de29f0a42c5aed8bb9016626ad4d27","kind":"tag","published_at":"2022-10-20T03:24:36.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2.6","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.6","dependencies_parsed_at":"2023-05-31T18:00:03.421Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.6/manifests"},{"name":"v0.2.5","sha":"ef221c102160c3414d0dcacda3be569ecc8a8255","kind":"tag","published_at":"2022-10-15T05:57:19.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2.5","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.5","dependencies_parsed_at":"2023-05-31T16:29:40.086Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.5/manifests"},{"name":"v0.2.4","sha":"45c7460ff048fe33de080107d7697977afca1109","kind":"tag","published_at":"2022-10-14T02:32:50.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2.4","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.4","dependencies_parsed_at":"2023-05-31T16:29:40.613Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.4/manifests"},{"name":"v0.2.3","sha":"3db1521e753459abacd20c22d0efed6023937e74","kind":"tag","published_at":"2022-10-07T06:48:14.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2.3","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.3","dependencies_parsed_at":"2023-05-31T16:29:40.951Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.3/manifests"},{"name":"v0.2.2","sha":"c6f5feedc8d51664b215f97f5422dbe293693344","kind":"tag","published_at":"2022-09-23T04:39:42.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2.2","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.2","dependencies_parsed_at":"2023-05-31T12:58:31.899Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.2/manifests"},{"name":"v0.2.1","sha":"aa2b57efbb4d4b789ae7ace53c94e89749676583","kind":"tag","published_at":"2022-09-13T01:41:17.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2.1","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.1","dependencies_parsed_at":"2023-05-31T12:58:32.322Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2.1/manifests"},{"name":"v0.2","sha":"8d335999d258705e6bb2c4a71f72930de3371bf9","kind":"tag","published_at":"2022-09-11T01:18:26.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.2","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.2","dependencies_parsed_at":"2023-05-31T12:58:32.742Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.2/manifests"},{"name":"v0.1","sha":"4c34554d637b06df017a183c28f555a371b6383f","kind":"tag","published_at":"2022-09-08T07:32:09.000Z","download_url":"https://codeload.github.com/StartAutomating/PSSVG/tar.gz/v0.1","html_url":"https://github.com/StartAutomating/PSSVG/releases/tag/v0.1","dependencies_parsed_at":"2023-05-31T12:58:33.161Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FPSSVG/tags/v0.1/manifests"}]},"repo_metadata_updated_at":"2023-07-07T20:33:36.688Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":14,"rankings":{"downloads":null,"dependent_repos_count":10.714625257486928,"dependent_packages_count":0.0,"stargazers_count":10.061796862620822,"forks_count":35.09111075899224,"docker_downloads_count":null,"average":13.966883219774996},"purl":"pkg:githubactions/StartAutomating/PSSVG","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/PSSVG","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/PSSVG","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/PSSVG/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2023-08-09T10:24:20.635Z","issues_count":107,"pull_requests_count":25,"avg_time_to_close_issue":405638.23,"avg_time_to_close_pull_request":82.6,"issues_closed_count":100,"pull_requests_closed_count":25,"pull_request_authors_count":1,"issue_authors_count":2,"avg_comments_per_issue":0.037383177570093455,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":25,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":107,"past_year_pull_requests_count":25,"past_year_avg_time_to_close_issue":405638.23,"past_year_avg_time_to_close_pull_request":82.6,"past_year_issues_closed_count":100,"past_year_pull_requests_closed_count":25,"past_year_pull_request_authors_count":1,"past_year_issue_authors_count":2,"past_year_avg_comments_per_issue":0.037383177570093455,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":25},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSSVG/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSSVG/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSSVG/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSSVG/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FPSSVG/codemeta","maintainers":[]}