{"id":7747513,"name":"StartAutomating/ScriptDeck","ecosystem":"actions","description":"Publish Plugins for StreamDeck","homepage":"https://scriptdeck.start-automating.com","licenses":null,"normalized_licenses":[],"repository_url":"https://github.com/StartAutomating/ScriptDeck","keywords_array":["powershell","streamdeck"],"namespace":"StartAutomating","versions_count":9,"first_release_published_at":"2021-07-22T19:14:10.000Z","latest_release_published_at":"2022-11-30T20:35:28.000Z","latest_release_number":"v0.4.6","last_synced_at":"2026-03-16T16:50:01.148Z","created_at":"2023-05-17T11:24:58.966Z","updated_at":"2026-03-16T16:50:01.149Z","registry_url":"https://github.com/StartAutomating/ScriptDeck","install_command":null,"documentation_url":null,"metadata":{"name":"BuildScriptDeck","description":"Publish Plugins for StreamDeck","inputs":{"ScriptDeckScript":{"required":false,"description":"A PowerShell Script that uses ScriptDeck.  \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"},"SkipScriptDeckPS1":{"required":false,"description":"If set, will not process any files named *.ScriptDeck.ps1"},"SkipStreamDeckPluginExport":{"required":false,"description":"If set, will not export any *.sdplugin directories as StreamDeck plugins."},"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":"film","color":"blue"},"runs":{"using":"composite","steps":[{"name":"ScriptDeckAction","id":"ScriptDeckAction","shell":"pwsh","env":{"UserName":"${{inputs.UserName}}","SkipScriptDeckPS1":"${{inputs.SkipScriptDeckPS1}}","ScriptDeckScript":"${{inputs.ScriptDeckScript}}","UserEmail":"${{inputs.UserEmail}}","CommitMessage":"${{inputs.CommitMessage}}","SkipStreamDeckPluginExport":"${{inputs.SkipStreamDeckPluginExport}}"},"run":"$Parameters = @{}\n$Parameters.ScriptDeckScript = ${env:ScriptDeckScript}\n$Parameters.SkipScriptDeckPS1 = ${env:SkipScriptDeckPS1}\n$Parameters.SkipScriptDeckPS1 = $parameters.SkipScriptDeckPS1 -match 'true';\n$Parameters.SkipStreamDeckPluginExport = ${env:SkipStreamDeckPluginExport}\n$Parameters.SkipStreamDeckPluginExport = $parameters.SkipStreamDeckPluginExport -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:: ScriptDeckAction $(@(foreach ($p in $Parameters.GetEnumerator()) {'-' + $p.Key + ' ' + $p.Value}) -join ' ')\"\n\u0026 {\u003c#\n.Synopsis\n    GitHub Action for ScriptDeck\n.Description\n    GitHub Action for ScriptDeck.  This will:\n\n    * Run all *.ScriptDeck.ps1 files beneath the workflow directory\n    * Run a .ScriptDeckScript parameter.\n    * Attempt an export of all *.sdplugin directories benath the workflow directory\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 ScriptDeck.  \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$ScriptDeckScript,\n\n# If set, will not process any files named *.ScriptDeck.ps1\n[switch]\n$SkipScriptDeckPS1,\n\n# If set, will not export any *.sdplugin directories as StreamDeck plugins.\n[switch]\n$SkipStreamDeckPluginExport,\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\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 'ScriptDeck.psd1' | Select-Object -First 1\n\nif ($PSD1Found) {\n    $ScriptDeckModulePath = $PSD1Found\n    Import-Module $PSD1Found -Force -PassThru | Out-Host\n} elseif ($env:GITHUB_ACTION_PATH) {\n    $ScriptDeckModulePath = Join-Path $env:GITHUB_ACTION_PATH 'ScriptDeck.psd1'\n    if (Test-path $ScriptDeckModulePath) {\n        Import-Module $ScriptDeckModulePath -Force -PassThru | Out-String\n    } else {\n        throw \"ScriptDeck not found\"\n    }\n} elseif (-not (Get-Module ScriptDeck)) {    \n    throw \"Action Path not found\"\n}\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\"::notice title=ModuleLoaded::ScriptDeck Loaded from Path - $($ScriptDeckModulePath)\" | Out-Host\n\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}\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\nif (-not $env:GITHUB_WORKSPACE) { throw \"No GitHub workspace\" }\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) {  return }\n\ngit pull | Out-Host\n\n$ScriptDeckScriptStart = [DateTime]::Now\nif ($ScriptDeckScript) {\n    Invoke-Expression -Command $ScriptDeckScript |\n        . $processScriptOutput |\n        Out-Host\n}\n$ScriptDeckScriptTook = [Datetime]::Now - $ScriptDeckScriptStart\n# \"::set-output name=ScriptDeckScriptRuntime::$($ScriptDeckScriptTook.TotalMilliseconds)\"   | Out-Host\n\n$ScriptDeckPS1Start = [DateTime]::Now\n$ScriptDeckPS1List  = @()\nif (-not $SkipScriptDeckPS1) {\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE |\n        Where-Object Name -Match '\\.ScriptDeck\\.ps1$' |\n        \n        ForEach-Object {\n            $ScriptDeckPS1List += $_.FullName.Replace($env:GITHUB_WORKSPACE, '').TrimStart('/')\n            $ScriptDeckPS1Count++\n            \"::notice title=Running::$($_.Fullname)\" | Out-Host\n            . $_.FullName |            \n                . $processScriptOutput  | \n                Out-Host\n        }\n}\n\n\nif (-not $SkipStreamDeckPluginExport) {\n    Get-ChildItem -Recurse -Path $env:GITHUB_WORKSPACE -Directory |\n        Where-Object Name -Match '\\.sdPlugin$' |\n        Export-StreamDeckPlugin -Force |\n        Add-Member CommitMessage \"Exporting StreamDeck Plugin [skip ci]\" -Force -PassThru |\n        . $processScriptOutput\n}\n\n\n$ScriptDeckPS1EndStart = [DateTime]::Now\n$ScriptDeckPS1Took = [Datetime]::Now - $ScriptDeckPS1Start\n# \"::set-output name=ScriptDeckPS1Count::$($ScriptDeckPS1List.Length)\"   | Out-Host\n# \"::set-output name=ScriptDeckPS1Files::$($ScriptDeckPS1List -join ';')\"   | Out-Host\n# \"::set-output name=ScriptDeckPS1Runtime::$($ScriptDeckPS1Took.TotalMilliseconds)\"   | Out-Host\nif ($CommitMessage -or $anyFilesChanged) {\n    if ($CommitMessage) {\n        dir $env:GITHUB_WORKSPACE -Recurse |\n            ForEach-Object {\n                $gitStatusOutput = git status $_.Fullname -s\n                if ($gitStatusOutput) {\n                    git add $_.Fullname\n                }\n            }\n\n        git commit -m $ExecutionContext.SessionState.InvokeCommand.ExpandString($CommitMessage)\n    }\n\n    \n    \"::notice::Pushing Changes\" | Out-Host\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    \n    \"Git Push Output: $($gitPushed  | Out-String)\"\n}\n\n} @Parameters\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":44693891,"uuid":"353471407","full_name":"StartAutomating/ScriptDeck","owner":"StartAutomating","description":"PowerShell Tools for Elgato StreamDeck","archived":false,"fork":false,"pushed_at":"2024-06-29T18:44:07.000Z","size":2117,"stargazers_count":46,"open_issues_count":60,"forks_count":11,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-01T11:50:08.488Z","etag":null,"topics":["powershell","streamdeck"],"latest_commit_sha":null,"homepage":"https://scriptdeck.start-automating.com","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"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":null,"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}},"created_at":"2021-03-31T19:43:40.000Z","updated_at":"2025-05-31T08:46:08.000Z","dependencies_parsed_at":"2023-11-25T22:26:25.992Z","dependency_job_id":"ba762258-b8d4-48d0-8615-8163e8b7d963","html_url":"https://github.com/StartAutomating/ScriptDeck","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/StartAutomating/ScriptDeck","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267959747,"owners_count":24172474,"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-07-30T02:00:09.044Z","response_time":70,"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":"v0.4.6","sha":"7c7c4a60485d44aae5b7a7173cd070f65eeda915","kind":"tag","published_at":"2022-11-30T20:35:28.000Z","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/v0.4.6","html_url":"https://github.com/StartAutomating/ScriptDeck/releases/tag/v0.4.6","dependencies_parsed_at":"2023-06-01T10:50:39.664Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ScriptDeck@v0.4.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.6/manifests"},{"name":"v0.4.5","sha":"a350c51011b1558ff8d8ac9095b52dc22863f673","kind":"tag","published_at":"2022-10-28T06:21:09.000Z","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/v0.4.5","html_url":"https://github.com/StartAutomating/ScriptDeck/releases/tag/v0.4.5","dependencies_parsed_at":"2023-05-31T20:43:57.881Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ScriptDeck@v0.4.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.5/manifests"},{"name":"v0.4.4","sha":"5a3b8253beb90662b6bed824abc229be8515765f","kind":"tag","published_at":"2022-10-18T19:45:56.000Z","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/v0.4.4","html_url":"https://github.com/StartAutomating/ScriptDeck/releases/tag/v0.4.4","dependencies_parsed_at":"2023-05-31T20:43:58.110Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ScriptDeck@v0.4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.4/manifests"},{"name":"v0.4.3","sha":"15c2e81539c0c727bd04419416cc4e145ef3dfa7","kind":"tag","published_at":"2022-10-12T07:21:06.000Z","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/v0.4.3","html_url":"https://github.com/StartAutomating/ScriptDeck/releases/tag/v0.4.3","dependencies_parsed_at":"2023-05-31T20:43:58.350Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ScriptDeck@v0.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.3/manifests"},{"name":"v0.4.2","sha":"38b4299f4871aecbe7483747f88384b6e1083956","kind":"tag","published_at":"2022-10-04T05:30:01.000Z","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/v0.4.2","html_url":"https://github.com/StartAutomating/ScriptDeck/releases/tag/v0.4.2","dependencies_parsed_at":"2023-05-31T20:43:58.671Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ScriptDeck@v0.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.2/manifests"},{"name":"v0.4.1","sha":"206a7b221d06a578193b5d1d5bf48334a9b97eef","kind":"tag","published_at":"2022-01-30T23:46:08.000Z","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/v0.4.1","html_url":"https://github.com/StartAutomating/ScriptDeck/releases/tag/v0.4.1","dependencies_parsed_at":"2023-05-30T18:34:09.496Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ScriptDeck@v0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4.1/manifests"},{"name":"v0.4","sha":"531cf9fae236049e24f071074e128bde44706d6e","kind":"tag","published_at":"2021-11-02T05:45:48.000Z","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/v0.4","html_url":"https://github.com/StartAutomating/ScriptDeck/releases/tag/v0.4","dependencies_parsed_at":"2023-05-30T18:34:10.125Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ScriptDeck@v0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.4/manifests"},{"name":"v0.3","sha":"beef3c5f7394cec76ab9f2c2556518f7db7d14da","kind":"commit","published_at":"2021-09-25T06:09:41.000Z","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/v0.3","html_url":"https://github.com/StartAutomating/ScriptDeck/releases/tag/v0.3","dependencies_parsed_at":"2023-05-30T18:34:11.938Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ScriptDeck@v0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.3/manifests"},{"name":"v0.2","sha":"c35bad23115525816139e3681b35ca82c258177d","kind":"tag","published_at":"2021-07-22T19:14:10.000Z","download_url":"https://codeload.github.com/StartAutomating/ScriptDeck/tar.gz/v0.2","html_url":"https://github.com/StartAutomating/ScriptDeck/releases/tag/v0.2","dependencies_parsed_at":"2023-05-30T18:34:12.632Z","dependency_job_id":null,"purl":"pkg:github/StartAutomating/ScriptDeck@v0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2FScriptDeck/tags/v0.2/manifests"}]},"repo_metadata_updated_at":"2025-07-31T00:39:47.764Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":6,"rankings":{"downloads":null,"dependent_repos_count":14.425606084614165,"dependent_packages_count":0.0,"stargazers_count":8.049437490096658,"forks_count":11.015686895896055,"docker_downloads_count":null,"average":8.37268261765172},"purl":"pkg:githubactions/StartAutomating/ScriptDeck","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/StartAutomating/ScriptDeck","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/StartAutomating/ScriptDeck","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/StartAutomating/ScriptDeck/dependencies","status":null,"funding_links":["https://github.com/sponsors/StartAutomating"],"critical":null,"issue_metadata":{"last_synced_at":"2025-07-01T11:36:12.362Z","issues_count":163,"pull_requests_count":28,"avg_time_to_close_issue":1018558.0933333334,"avg_time_to_close_pull_request":225447.9642857143,"issues_closed_count":75,"pull_requests_closed_count":28,"pull_request_authors_count":3,"issue_authors_count":11,"avg_comments_per_issue":0.15337423312883436,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":28,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":10,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":616138.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":5,"past_year_avg_comments_per_issue":0.2,"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%2Fscriptdeck/issues","maintainers":[{"login":"StartAutomating","count":97,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}],"active_maintainers":[{"login":"StartAutomating","count":6,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/StartAutomating"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FScriptDeck/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FScriptDeck/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FScriptDeck/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FScriptDeck/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/StartAutomating%2FScriptDeck/codemeta","maintainers":[]}