📖 [Docs]: Release bumps now have a configurable default - #196
Open
Marius Storhaug (MariusStorhaug) wants to merge 4 commits into
Open
📖 [Docs]: Release bumps now have a configurable default#196Marius Storhaug (MariusStorhaug) wants to merge 4 commits into
Marius Storhaug (MariusStorhaug) wants to merge 4 commits into
Conversation
Copilot started reviewing on behalf of
Marius Storhaug (MariusStorhaug)
August 29, 2026 12:36
View session
There was a problem hiding this comment.
Pull request overview
This PR updates the MSX documentation set to introduce a configurable repository-wide default semantic version bump (DefaultBump) for release automation, while keeping owned release:* labels as explicit overrides and updating prerelease semantics to reuse the resolved bump.
Changes:
- Define
DefaultBump(defaulting topatch) and the override / conflict rules in Release Management spec + design. - Update Ways of Working guidance (PR format, CD/release, branching/promotion, automation labels) to reflect “policy-first” bump selection and prerelease behavior.
- Align the VS Code Extension Framework spec/design with the Release Management contract.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| src/docs/Ways-of-Working/PR-Format.md | Documents how release:pre-release interacts with DefaultBump and owned bump-label overrides. |
| src/docs/Ways-of-Working/Continuous-Delivery-And-Release.md | Updates CD/release “decision at the gate” language to reference resolved release policy and DefaultBump. |
| src/docs/Ways-of-Working/Branching-and-Merging.md | Updates promotion-model guidance to use the resolved policy / DefaultBump with explicit overrides. |
| src/docs/Ways-of-Working/Automation-Labels.md | Reframes label meanings around DefaultBump + owned label overrides and conflict handling. |
| src/docs/Coding-Standards/Natural-Language.md | Updates example language/error-message guidance to reflect conflicting owned bump labels and DefaultBump. |
| src/docs/Capabilities/vscode-extension-framework/spec.md | Updates framework requirements/success criteria to match policy-driven bump selection. |
| src/docs/Capabilities/vscode-extension-framework/design.md | Updates pipeline/design narrative to reference release policy and DefaultBump in version resolution. |
| src/docs/Capabilities/release-management/spec.md | Defines the normative DefaultBump rules, override precedence, prerelease behavior, and label conflict handling. |
| src/docs/Capabilities/release-management/index.md | Updates the section index descriptions to match the refreshed spec/design framing. |
| src/docs/Capabilities/release-management/design.md | Documents configuration surface and pipeline behavior for resolving DefaultBump + owned label overrides. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Copilot started reviewing on behalf of
Marius Storhaug (MariusStorhaug)
August 29, 2026 12:41
View session
Marius Storhaug (MariusStorhaug)
marked this pull request as ready for review
August 29, 2026 12:43
Marius Storhaug (MariusStorhaug)
enabled auto-merge (squash)
August 29, 2026 12:43
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.
Repositories can configure their normal semantic version bump through
DefaultBump. Explicit owned bump labels override that policy, prereleases reuse the resolved bump, andrelease:skipremains the publication stop.Changed: Release bumps have a safe repository default
DefaultBumpacceptspatch,minor, ormajorand resolves topatchwhen omitted. A pull request can override it with one owned bump label; conflicting owned labels fail, while bare and unrelated labels remain ignored.Technical details
workflow_dispatchpath still requires an explicit bump and release-note context.DefaultBump, default bump, release label, or release management is fully satisfied by this diff.src/docs/Capabilities/release-management/**src/docs/Capabilities/vscode-extension-framework/**src/docs/Ways-of-Working/**src/docs/Coding-Standards/Natural-Language.mdRelevant issues (or links)
Related work