Commit e9ce1e9
authored
🩹 [Patch]: Name the helper module after the action (Debug.Helpers) (#32)
Aligns the helper module with the action helper-module naming standard:
name it after the action (`Debug.Helpers`) instead of the generic
`Helpers`.
This action loads the shared framework `Helpers` module (for `LogGroup`)
alongside its own helper module, so the generic name collided in the
runner's single module session. An action-scoped name removes the clash.
## Changes
- `src/Helpers.psm1` → `src/Debug.Helpers.psm1`
- Updated the entry-script import in `src/main.ps1`.
No runtime logic changed (100% file rename + one import path).
## Validation
`Debug.Helpers` imports and exports `Set-MaskedValue`; `main.ps1`
parses; PSScriptAnalyzer clean. Action-Test in CI is the full gate.
Part of PSModule/Process-PSModule#364. Standard: the "Name helper
modules after the action" rule in the GitHub Actions coding standard
(MSXOrg/docs#24).1 parent 4b922ef commit e9ce1e9
2 files changed
Lines changed: 1 addition & 1 deletion
File renamed without changes.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
0 commit comments