📖 [Docs]: Configure retained releases and current PR feedback - #535
Draft
Marius Storhaug (MariusStorhaug) wants to merge 13 commits into
Draft
📖 [Docs]: Configure retained releases and current PR feedback#535Marius Storhaug (MariusStorhaug) wants to merge 13 commits into
Marius Storhaug (MariusStorhaug) wants to merge 13 commits into
Conversation
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
GitHub Actions requires static queue values and rejects queue: max with cancellation. Separate production and pull-request caller jobs preserve both required behaviors. Co-authored-by: Copilot <223556698+Copilot@users.noreply.github.com>
Split each internal caller into retained production and replaceable pull-request jobs while keeping artifact verification reachable after the skipped sibling job. Co-authored-by: Copilot <223556698+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556698+Copilot@users.noreply.github.com>
Document the baseline, required workflow credentials, supported site configuration, and exact caller contract consistently across setup and reference guides. Co-authored-by: Copilot <223556698+Copilot@users.noreply.github.com>
Keep consumer documentation changes within the current site staging contract and surface unsupported authored-content migrations as framework gaps. Co-authored-by: Copilot <223556698+Copilot@users.noreply.github.com>
Return caller guidance and direct workflow tests to the experimentally adopted workflow-level concurrency group and one reusable-workflow calling job. Keep public caller permissions scoped to that job. Co-authored-by: Copilot <223556698+Copilot@users.noreply.github.com>
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.
Module repositories can now configure Process-PSModule so default-branch releases are retained while pull-request feedback converges on the latest change.
Changed: Workflow concurrency
Add this workflow-level block to the caller workflow that invokes Process-PSModule:
Default-branch pushes and
workflow_dispatchreleases retain the maximum native queue. Pull-request activity cancels and replaces obsolete work for that pull request. Apull_request.closedevent cancels its remaining activity, then enters the reusable workflow's existing close path without delaying the resulting default-branch release.Migration
.github/workflows/Process-PSModule.yml, replace the existingconcurrencyblock with the block above.Process-PSModule-: the reusable workflow already uses that prefixed group, and caller and reusable groups must differ.pull_requestactionsopened,reopened,synchronize,labeled,unlabeled, andclosed. Theclosedaction is required for prerelease cleanup.workflow_dispatchwhen manual production releases are supported; it joins the retained production queue automatically.Technical details
github.workflowisolates it from other caller workflows in the repository, while avoiding the reusable workflow's existingProcess-PSModule-...group.Relevant issues (or links)
Related work