fix: Fix validate pr workflow#816
Merged
shirasassoon merged 42 commits intomicrosoft:mainfrom Feb 16, 2026
Merged
Conversation
added 11 commits
January 22, 2026 11:15
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the PR validation workflow’s version-bump rules so PRs titled like vX.X.X must include the corresponding per-release .changes/vX.X.X.md file in addition to the version constant and changelog updates.
Changes:
- Adjusted version-bump validation to require
.changes/v<version>.mdwhen PR title matchesvX.X.X. - Added a missing-files collection to provide a clearer failure message when required files aren’t present.
ayeshurun
approved these changes
Feb 16, 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.
Fixes #815
This pull request updates the PR validation workflow to enforce stricter requirements for version bump pull requests. Now, when a PR title matches a version format (e.g., vX.X.X), it must include not only
constants.pyandchangelog.md, but also the correspondingversion.mdfile.Validation workflow changes:
.github/workflows/validate.ymlto require that PRs titled with a version (vX.X.X) must includesrc/fabric_cicd/constants.py,docs/changelog.md, and the corresponding.changes/vX.X.X.mdfile in the changed files. If any of these files are missing, the workflow will fail with an explicit error message.