Fix template path for rebuild branch check in package.yml#26425
Merged
TravisEz13 merged 1 commit intomasterfrom Nov 12, 2025
Merged
Fix template path for rebuild branch check in package.yml#26425TravisEz13 merged 1 commit intomasterfrom
TravisEz13 merged 1 commit intomasterfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR fixes a template path reference in the Windows packaging pipeline by correcting the path to rebuild-branch-check.yml from a relative path to an absolute path from the repository root.
- Changes the template reference from a relative path (
rebuild-branch-check.yml@self) to an absolute path (/.pipelines/templates/rebuild-branch-check.yml@self) - Aligns the template reference with the pattern used for other template includes in the same file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
7 tasks
Contributor
|
@TravisEz13 I've opened a new pull request, #26426, to work on those changes. Once the pull request is ready, I'll request review from you. |
daxian-dbw
approved these changes
Nov 12, 2025
TravisEz13
added a commit
to TravisEz13/PowerShell
that referenced
this pull request
Nov 12, 2025
5 tasks
adityapatwardhan
pushed a commit
to adityapatwardhan/PowerShell
that referenced
this pull request
Dec 2, 2025
9 tasks
adityapatwardhan
pushed a commit
to adityapatwardhan/PowerShell
that referenced
this pull request
Dec 5, 2025
adityapatwardhan
pushed a commit
to adityapatwardhan/PowerShell
that referenced
this pull request
Dec 5, 2025
SIRMARGIN
pushed a commit
to SIRMARGIN/PowerShell
that referenced
this pull request
Dec 12, 2025
kilasuit
pushed a commit
to kilasuit/PowerShell
that referenced
this pull request
Jan 2, 2026
daxian-dbw
pushed a commit
to daxian-dbw/PowerShell
that referenced
this pull request
Feb 13, 2026
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.
Summary
This PR fixes an incorrect template path reference in the Windows package build template.
Issue
The package.yml template was referencing
ebuild-branch-check.yml@self with a relative path, which caused the pipeline to fail with:
File /.pipelines/templates/packaging/windows/rebuild-branch-check.yml not found in repositoryFix
Changed the template reference from:
`yaml
`
to:
`yaml
`
This uses an absolute path from the repository root, consistent with other template references in the file.
Testing
This fix resolves the pipeline error and allows the Windows packaging pipeline to run successfully.