Migrated pipeline templates to use 'verify-changelogs.yml' for changelog verification#47420
Merged
Migrated pipeline templates to use 'verify-changelogs.yml' for changelog verification#47420
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR migrates pipeline templates from using individual per-artifact changelog verification (verify-changelog.yml) to a centralized bulk verification approach (verify-changelogs.yml). The new template parses all PackageInfo files from a folder and validates changelogs for all packages at once, simplifying the pipeline configuration.
Key Changes
- Consolidated changelog verification from per-artifact loops to a single template invocation that processes all packages
- Added
ForReleaseparameter support to the bulk verification template and PowerShell script - Removed the need to iterate through artifacts in pipeline templates for changelog verification
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| eng/pipelines/templates/stages/archetype-sdk-client-patch.yml | Replaced per-artifact changelog verification loop with single verify-changelogs.yml call, passing ForRelease: true for patch releases |
| eng/pipelines/templates/stages/archetype-java-release-batch.yml | Simplified changelog verification by removing per-artifact loop and using bulk verification with ForRelease: true |
| eng/pipelines/templates/jobs/ci.yml | Unified changelog verification approach by removing conditional logic and using bulk verification with default ForRelease: false for CI builds |
| eng/common/scripts/Verify-ChangeLogs.ps1 | Added ForRelease parameter and passed it to Confirm-ChangeLogEntry for proper validation |
| eng/common/pipelines/templates/steps/verify-changelogs.yml | Added ForRelease parameter with default value false and passed it to the PowerShell script |
weshaggard
reviewed
Dec 2, 2025
weshaggard
reviewed
Dec 2, 2025
weshaggard
reviewed
Dec 2, 2025
…ipeline version step
Member
Author
|
Test runs: |
weshaggard
approved these changes
Dec 3, 2025
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.
The template takes the path of the
PackageInfofolder then parses thePackageInfoto run the changelog validation.