fix(pipeline): remove temp branch pin left over from PR #9453 testing - #9474
Merged
Conversation
PR #9453 pinned the LogicAppsUX template repository to refs/heads/elaina/update-pipeline so test runs would exercise the CFS changes in setup.yml. That pin was meant to be removed before merge. Dropping the ref restores the default behavior: template references like setup.yml@LogicAppsUX resolve to the default branch (main). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01391HTVsUAx7BaUJUvRgVdV
Contributor
🤖 AI PR Validation ReportPR Review ResultsThank you for your submission! Here's detailed feedback on your PR title and body compliance:✅ PR Title
✅ Commit Type
✅ Risk Level
✅ What & Why
✅ Impact of Change
✅ Test Plan
|
| Section | Status | Recommendation |
|---|---|---|
| Title | ✅ | No change needed |
| Commit Type | ✅ | No change needed |
| Risk Level | ✅ | low is correct |
| What & Why | ✅ | No change needed |
| Impact of Change | ✅ | No change needed |
| Test Plan | ✅ | Manual testing justified |
| Contributors | Optionally credit collaborators | |
| Screenshots/Videos | ✅ | N/A — no visual changes |
All required checks pass. This PR is compliant and ready to merge. Consider removing the needs-pr-update label.
Powered by: Copilot CLI (claude-opus-4.8) | Last updated: Wed, 29 Jul 2026 20:43:29 GMT
Contributor
📊 Coverage CheckNo source files changed in this PR. |
Elaina-Lee
enabled auto-merge (squash)
July 29, 2026 20:42
Contributor
There was a problem hiding this comment.
Pull request overview
This PR restores the intended Azure DevOps pipeline behavior by removing a temporary branch pin on the LogicAppsUX GitHub repository resource, so setup.yml@LogicAppsUX templates resolve from the default branch (main) again.
Changes:
- Remove the temporary comment block and
ref: refs/heads/elaina/update-pipelinefrom theLogicAppsUXrepository resource in the 1ES pipeline YAML.
lambrianmsft
approved these changes
Jul 29, 2026
14 tasks
Elaina-Lee
added a commit
that referenced
this pull request
Jul 29, 2026
…ck releases (#9476) revert(pipeline): roll back CFS registry config in setup.yml (#9453) The CFS registry routing added in #9453 breaks the release pipeline at the "Install pnpm" step: `npm install -g pnpm` resolves against the CFS feed and fails with E401 (invalid/missing auth token), so no pipeline run can get past setup. Roll back setup.yml to its pre-#9453 state to unblock releases; the SFI/SR21 CFS work can be re-landed once the feed authentication is sorted out. The other two files from #9453 stay as they are: the 1esmain.yml branch pin was already reverted in #9474, and the .npmrc change was only a trailing-newline fix. Claude-Session: https://claude.ai/code/session_01391HTVsUAx7BaUJUvRgVdV Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This was referenced Jul 30, 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.
Commit Type
Risk Level
What & Why
PR #9453 temporarily pinned the
LogicAppsUXtemplate repository resource in.azure-pipelines/1esmain.ymltorefs/heads/elaina/update-pipelineso test runs would exercise the CFS registry changes insetup.yml. The pin was markedTEMP (testing only, remove before merge)but was accidentally left in when the PR merged. This PR removes the comment block and theref:line, restoring the pre-#9453 behavior where template references likesetup.yml@LogicAppsUXresolve to the default branch (main).Impact of Change
@LogicAppsUXtemplates frommainagain instead of the now-merged feature branch. Sinceelaina/update-pipelinewas merged intomain, both refs currently have identical template content, so there is no behavior change today — this removes the risk of the pipeline silently drifting or breaking if the feature branch is deleted or diverges.Test Plan
git show 6fcbd144^:.azure-pipelines/1esmain.yml); YAML-only change to the ADO pipeline resource definition, not exercised by GitHub CI.Contributors
Screenshots/Videos