From ba60e7587ded63c8a5170ef323be2fa4035897ad Mon Sep 17 00:00:00 2001 From: Mikey Lombardi Date: Thu, 31 Jul 2025 10:34:12 -0500 Subject: [PATCH] (GHA, TEST) Test authorization workflow This change adds a comment to the `authorized_accounts` parameter handler to trigger the `verification/authorization/v1` GHA so that we can verify whether the action is behaving correctly. This change should not be merged. --- .github/actions/verification/authorization/v1/Parameters.psd1 | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/verification/authorization/v1/Parameters.psd1 b/.github/actions/verification/authorization/v1/Parameters.psd1 index d849a1a8b74..ce808e135e3 100644 --- a/.github/actions/verification/authorization/v1/Parameters.psd1 +++ b/.github/actions/verification/authorization/v1/Parameters.psd1 @@ -35,6 +35,7 @@ Process = { param($Parameters, $Value, $ErrorTarget) + # Comment line. [string[]]$SpecifiedAccounts = $Value -split ',' | Where-Object { -not [string]::IsNullOrEmpty($_) }