Add the needed variable groups to the MSIX VPack pipeline to enforce using the production ADO feed - #27896
Merged
Dongbo Wang (daxian-dbw) merged 2 commits intoAug 27, 2026
Conversation
Dongbo Wang (daxian-dbw)
marked this pull request as ready for review
August 27, 2026 22:01
Dongbo Wang (daxian-dbw)
requested a review
from Justin Chung (jshigetomi)
as a code owner
August 27, 2026 22:01
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
1 similar comment
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the MSIX VPack official pipeline to include the Azure DevOps feed-read variable groups required for authenticated access to the production ADO feed, ensuring the insert-nuget-config-azfeed.yml template can switch all nuget.config files to the private/production feed when UseAzDevOpsFeed is enabled.
Changes:
- Add
mscodehub-feed-read-generalvariable group to the pipeline. - Add
mscodehub-feed-read-akvvariable group to the pipeline.
💡 Add a code-review agent skill for context-aware, tailored reviews. Learn more in the docs.
Aditya Patwardhan (adityapatwardhan)
approved these changes
Aug 27, 2026
Dongbo Wang (daxian-dbw)
merged commit Aug 27, 2026
ea61eef
into
PowerShell:master
38 of 39 checks passed
Member
Author
|
7.6.5 release branch in ADO already has this fix. |
9 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.
PR Summary
Add the needed variable groups to the MSIX VPack pipeline to enforce using the production ADO feed.
The MSIX VPack pipeline is using the public ADO feed without PAT for building PowerShell. This works fine before because all needed packages are already pulled to the ADO feed from the upstream by the
Coordinate Binarybuild, so later when running MSIX VPack pipeline, there is no need to pull a NuGet package from upstream, and accessing available NuGet packages in that feed doesn't require authentication.But with the early-access .NET feed work, e.g. in PowerShell v7.6.5, the
Coordinate Binarybuild uses a different internal feed for build and thus when it gets to the MSIX VPack pipeline, it requires the needed packages to be pulled from upstream to the ADO feed, which requires authentication, and thus the build failed.This change will make sure the
'Switch to production Azure DevOps feed for all nuget.configs'step gets run from theinsert-nuget-config-azfeed.ymltemplate, to give the pipeline the permission to pull packages from upstream.