-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Fix template path for rebuild branch check in package.yml #26425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
|
@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. |
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.