From ce5ab3bc34455dfd05a501ea4ce0a4794fa1c7f6 Mon Sep 17 00:00:00 2001 From: z-Fng <54583083+z-Fng@users.noreply.github.com> Date: Tue, 5 May 2026 18:09:20 +0000 Subject: [PATCH 1/2] chore: Change default VerbosePreference to SilentlyContinue --- action.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.ps1 b/action.ps1 index 30d0a1d..15f690b 100644 --- a/action.ps1 +++ b/action.ps1 @@ -1,6 +1,6 @@ # Set Global Preference $Global:ErrorActionPreference = 'Continue' -$Global:VerbosePreference = 'Continue' +$Global:VerbosePreference = 'SilentlyContinue' # Import all modules Join-Path $PSScriptRoot 'src' | Get-ChildItem -File | Select-Object -ExpandProperty Fullname | Import-Module From 43286c7d85583027e668e0d6ff221de959a3b58b Mon Sep 17 00:00:00 2001 From: z-Fng <54583083+z-Fng@users.noreply.github.com> Date: Wed, 13 May 2026 03:12:03 +0000 Subject: [PATCH 2/2] VerbosePreference is not explicitly specified; the default is used instead Co-authored-by: Chawye Hsu --- action.ps1 | 1 - 1 file changed, 1 deletion(-) diff --git a/action.ps1 b/action.ps1 index 15f690b..562dd6a 100644 --- a/action.ps1 +++ b/action.ps1 @@ -1,6 +1,5 @@ # Set Global Preference $Global:ErrorActionPreference = 'Continue' -$Global:VerbosePreference = 'SilentlyContinue' # Import all modules Join-Path $PSScriptRoot 'src' | Get-ChildItem -File | Select-Object -ExpandProperty Fullname | Import-Module