Move framework actions into per-action folders (as-is)#1
Merged
Marius Storhaug (MariusStorhaug) merged 2 commits intoJul 12, 2026
Conversation
13 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
First step of the PSMA consolidation (PSModule/Process-PSModule#384): fold the framework-internal GitHub Actions into one repo, one folder per action, moved as-is.
Each action keeps its own
action.yml+src/scripts+tests, so every action stays independently usable asPSModule/PSMA/<Action>@<ref>while we migrate. No logic changed in this PR — it only relocates the actions.Folders added
Build-PSModule/Test-PSModule/Publish-PSModule/Get-PSModuleSettings/Resolve-PSModuleVersion/(usesscripts/)Install-PSModuleHelpers/Document-PSModule/Get-PesterCodeCoverage/Get-PesterTestResults/Copied per action:
action.yml, the script dir (src/scripts),tests/,README.md. Skipped each source repo's.github/(its own CI),LICENSE(repo root already has one), and dotfiles. The Template-Action root scaffolding is left untouched for now.Next steps (separate PRs)
action.ymllogic into the PowerShell scripts (most actions already just call a main script).PSMAmodule imported by a new rootmain.ps1that dispatches on an activity input (e.g.main.ps1 Build,main.ps1 TestLocal), then re-point the Process-PSModule sub-workflows at PSMA.Tracking: PSModule/Process-PSModule#384