[release/8.0] Migrate winforms-pr internal-feed auth off retired PAT to System.AccessToken - #14817
Merged
KlausLoeffelmann merged 1 commit intoJul 29, 2026
Conversation
The winforms-pr pipeline (eng/pipelines/build-PR.yml) authenticated internal darc-int-* feeds with the dn-bot-dnceng-artifact-feeds-rw PAT, which was removed from the arcade secret manifest and expired 2026-07-11. This causes HTTP 401 on Arcade SDK toolset restore in internal/release/8.0 PR/CI builds. Switch to $(System.AccessToken) (build identity), mirroring eng/pipelines/build.yml on the same branch.
KlausLoeffelmann
approved these changes
Jul 29, 2026
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
The
winforms-prpipeline (eng/pipelines/build-PR.yml) authenticates internaldarc-int-*Azure Artifacts feeds during Arcade SDK toolset restore using thedn-bot-dnceng-artifact-feeds-rwPAT. That PAT was removed from the arcade secret manifest (arcade #17079, merged 2026-07-08) and expired 2026-07-11, so internalrelease/8.0builds now fail with HTTP 401 (Unauthorized) duringartifacts/toolset/restore.proj.This swaps the credential to
$(System.AccessToken)(build identity), mirroring whateng/pipelines/build.yml(the official CI pipeline) already does on this same branch.Root cause / evidence
winforms-proninternal/release/8.0build 3029632 (2026-07-23) —401 (Unauthorized)ondarc-int-*feeds fetchingMicrosoft.DotNet.Arcade.Sdk.eng/pipelines/build.ymlonrelease/8.0was already migrated to$(System.AccessToken)(which is whydotnet-winforms CIpasses on the same commit); onlybuild-PR.ymlwas missed.release/9.0andmainare unaffected.Verification
Applied this exact change to a test branch off
internal/release/8.0and queued thewinforms-prpipeline: build 3032700 succeeded (all Windows Debug/Release x64/x86/arm64 legs), theSetup Private Feeds Credentialsstep passed, and the internal-feed restore completed with no 401.Change
eng/pipelines/build-PR.yml—Token: $(dn-bot-dnceng-artifact-feeds-rw)→Token: $(System.AccessToken)Tracked by AzDO #11679.
Microsoft Reviewers: Open in CodeFlow