Move package validation to package pipeline#26414
Merged
TravisEz13 merged 1 commit intoPowerShell:masterfrom Nov 10, 2025
Merged
Move package validation to package pipeline#26414TravisEz13 merged 1 commit intoPowerShell:masterfrom
TravisEz13 merged 1 commit intoPowerShell:masterfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR refactors the pipeline organization by moving the validatePackages stage from the release pipeline to the package pipeline, where package validation logically belongs. This improves separation of concerns by validating packages immediately after they are created and uploaded, rather than during the release process.
Key changes:
- Removed
validatePackagesstage and its dependency from the release pipeline - Added
validatePackagesstage to the package pipeline after theuploadstage - Fixed trailing whitespace on line 361
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .pipelines/PowerShell-Release-Official.yml | Removed validatePackages stage and its dependency from UpdateChangeLog stage; fixed trailing whitespace |
| .pipelines/PowerShell-Packages-Official.yml | Added validatePackages stage after upload stage to validate package names immediately after upload |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
jshigetomi
approved these changes
Nov 10, 2025
TravisEz13
added a commit
to TravisEz13/PowerShell
that referenced
this pull request
Nov 10, 2025
5 tasks
adityapatwardhan
pushed a commit
to adityapatwardhan/PowerShell
that referenced
this pull request
Dec 2, 2025
9 tasks
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
5 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.
This pull request updates the package validation workflow in the pipeline YAML files to improve the sequencing and location of the package validation stage. The main change is moving the
validatePackagesstage from the release pipeline to the package build pipeline, ensuring validation occurs earlier in the process.Pipeline workflow changes:
validatePackagesstage to.pipelines/PowerShell-Packages-Official.yml, placing package name validation immediately after the upload stage in the package build pipeline.validatePackagesstage from.pipelines/PowerShell-Release-Official.yml, so package validation is no longer performed in the release pipeline.validatePackagesstage.