Make build title prefix optional - #334658
Merged
Bryan Chen (bryanchen-d) merged 1 commit intoSep 4, 2026
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot started reviewing on behalf of
Bryan Chen (bryanchen-d)
September 4, 2026 23:08
View session
Contributor
📬 CODENOTIFYThe following users are being notified based on files changed in this PR: Ladislau Szomoru (@lszomoru)Matched files:
|
Contributor
There was a problem hiding this comment.
Copilot review overview
🟢 Approval recommended
The change follows existing pipeline sentinel patterns and covers both default and explicit-prefix behavior.
Review tier: Balanced
Findings: None
What changed in this PR
Makes the Azure product-build title prefix optional while preserving existing run names.
Changes:
- Uses
noneas the manual-form sentinel. - Normalizes it to an empty variable.
- Corrects label capitalization.
| File | Description |
|---|---|
build/azure-pipelines/product-build.yml |
Adds optional title-prefix normalization and uses it in run names. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Raymond Zhao (rzhao271)
approved these changes
Sep 4, 2026
Bryan Chen (bryanchen-d)
enabled auto-merge (squash)
September 4, 2026 23:23
Bryan Chen (bryanchen-d)
deleted the
copilot/vscode/optional-build-title-prefix
branch
September 4, 2026 23:46
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
Make
VSCODE_BUILD_TITLE_PREFIXoptional in Azure DevOps's manual Run Pipeline form without changing existing build names.Azure runtime parameters cannot be optional, and an empty string is not a usable manual-form default. This change follows the pipeline's existing sentinel pattern:
nonenoneto an empty pipeline variableIt also corrects the parameter label to title-style capitalization.
Validation
ADO pipeline 111 previews using this YAML as
yamlOverride:VSCODE_BUILD_TITLE_PREFIXto""SDK Integration -compiled successfully and normalized to that exact valuegit diff --check, VS Code Problems diagnostics, and staged code review passed.