From 51612dcdb62f1bd3e01da16b003257290af68f23 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Thu, 9 Jul 2026 13:12:57 +0200 Subject: [PATCH] maintenance: rename helper module to Debug.Helpers Aligns with the action helper-module naming standard: name the module after the action, not the generic Helpers. The action loads the shared framework Helpers module (for LogGroup) alongside its own, so the generic name collided in the runner's single module session. Renames src/Helpers.psm1 to src/Debug.Helpers.psm1 and updates the entry-script import. No runtime logic changed. Part of PSModule/Process-PSModule#364. --- src/{Helpers.psm1 => Debug.Helpers.psm1} | 0 src/main.ps1 | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{Helpers.psm1 => Debug.Helpers.psm1} (100%) diff --git a/src/Helpers.psm1 b/src/Debug.Helpers.psm1 similarity index 100% rename from src/Helpers.psm1 rename to src/Debug.Helpers.psm1 diff --git a/src/main.ps1 b/src/main.ps1 index 4fd05c8..04dce9d 100644 --- a/src/main.ps1 +++ b/src/main.ps1 @@ -3,7 +3,7 @@ param() Install-PSResource -Repository PSGallery -TrustRepository -Name Net Install-PSResource -Repository PSGallery -TrustRepository -Name PublicIP -Import-Module "$PSScriptRoot/Helpers.psm1" +Import-Module "$PSScriptRoot/Debug.Helpers.psm1" $CONTEXT_GITHUB = $env:CONTEXT_GITHUB | ConvertFrom-Json -Depth 100