[ML] Update backport config for 9.5.0 development#3024
Open
edsavage wants to merge 1 commit intoelastic:mainfrom
Open
[ML] Update backport config for 9.5.0 development#3024edsavage wants to merge 1 commit intoelastic:mainfrom
edsavage wants to merge 1 commit intoelastic:mainfrom
Conversation
Update branchLabelMapping so v9.5.0 maps to main (the current development branch). Without this, v9.5.0 matches the generic pattern and maps to the non-existent 9.5 branch, causing all backport attempts to fail. Made-with: Cursor
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
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
Fixes backport failures on all PRs labelled
v9.5.0.The
branchLabelMappingin.backportrc.jsonstill mappedv9.4.0tomainfrom the previous release cycle. Sincemainis now at9.5.0, thev9.5.0label was matching the generic pattern (v(\d+).(\d+).\d+→$1.$2) and attempting to backport to a9.5branch that doesn't exist.One-line fix:
^v9.4.0$→^v9.5.0$for themainmapping.This should be updated as part of each version bump — it's a candidate for inclusion in
dev-tools/bump_version.sh.Made with Cursor