⚙️ [Maintenance]: Workflow actions follow the selected revision#385
Draft
Marius Storhaug (MariusStorhaug) wants to merge 4 commits into
Draft
⚙️ [Maintenance]: Workflow actions follow the selected revision#385Marius Storhaug (MariusStorhaug) wants to merge 4 commits into
Marius Storhaug (MariusStorhaug) wants to merge 4 commits into
Conversation
| PSMODULE_BUILD_PSMODULE_INPUT_Prerelease: ${{ inputs.Prerelease }} | ||
| run: | | ||
| # Build-PSModule | ||
| ${{ github.action_path }}/src/main.ps1 |
| working-directory: ${{ inputs.WorkingDirectory }} | ||
| run: | | ||
| # Build-PSModuleDocumentation | ||
| ${{ github.action_path }}/src/main.ps1 |
| shell: pwsh | ||
| run: | | ||
| # Install-PSModuleHelpers | ||
| ${{ github.action_path }}/src/main.ps1 |
| PSMODULE_PUBLISH_PSMODULE_INPUT_UsePRBodyAsReleaseNotes: ${{ inputs.UsePRBodyAsReleaseNotes }} | ||
| PSMODULE_PUBLISH_PSMODULE_INPUT_UsePRTitleAsReleaseName: ${{ inputs.UsePRTitleAsReleaseName }} | ||
| PSMODULE_PUBLISH_PSMODULE_INPUT_UsePRTitleAsNotesHeading: ${{ inputs.UsePRTitleAsNotesHeading }} | ||
| run: ${{ github.action_path }}/src/publish.ps1 |
| env: | ||
| PSMODULE_PUBLISH_PSMODULE_INPUT_WhatIf: ${{ inputs.WhatIf }} | ||
| PSMODULE_PUBLISH_PSMODULE_CONTEXT_ReleaseTag: ${{ env.PSMODULE_PUBLISH_PSMODULE_CONTEXT_ReleaseTag }} | ||
| run: ${{ github.action_path }}/src/cleanup.ps1 |
| PSMODULE_TEST_PSMODULE_INPUT_Settings: ${{ inputs.Settings }} | ||
| run: | | ||
| # Get test paths | ||
| ${{ github.action_path }}/src/main.ps1 |
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
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.
Process-PSModule now carries the actions used only by its pipeline. Consumers continue to call one reusable workflow, while the workflow and its action set execute from the same selected revision for both released tags and in-progress development branches.
Changed: Action versions follow the selected workflow
A consumer keeps its existing reusable-workflow reference. When it selects a release tag, the matching released action set runs; when the workflow is exercised from a development branch, that branch's action changes run together with it. No caller inputs or action references are required.
Technical Details
.github/actions/with their manifests and source code._wf; thirteen action call sites resolve from that checkout.Install-PSModuleHelpersnow resolve from the same bundled revision.DEPENDENCIES.mddistinguishes bundled actions from the three remaining external PSModule action dependencies.Validation
feat/internalize-process-actionsto the invoked workflow commit.No issue is linked; this PR proceeds by explicit maintainer direction.