fix: allow empty values in Set-GHVariable

This commit is contained in:
copilot-swe-agent[bot]
2026-06-14 11:24:36 +00:00
committed by GitHub
parent d41fba6002
commit 6e4323f191

View File

@@ -74,6 +74,7 @@ function Set-GHVariable {
[Parameter(Mandatory = $true)] [Parameter(Mandatory = $true)]
[string]$Name, [string]$Name,
[Parameter(Mandatory = $true)] [Parameter(Mandatory = $true)]
[AllowEmptyString()]
[string]$Value [string]$Value
) )