From 52468bda19043293d4258199f1e1762bbec9bf64 Mon Sep 17 00:00:00 2001 From: Ed Savage Date: Tue, 14 Apr 2026 11:23:42 +1200 Subject: [PATCH 1/2] [ML] Update backport config for 9.5.0 development 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 --- .backportrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.backportrc.json b/.backportrc.json index 44bdc2d948..4029b0a835 100644 --- a/.backportrc.json +++ b/.backportrc.json @@ -3,7 +3,7 @@ "targetBranchChoices" : [ "main", "9.3", "9.2", "9.1", "9.0", "8.19", "8.18", "8.17", "7.17" ], "targetPRLabels" : [ "backport" ], "branchLabelMapping" : { - "^v9.4.0$" : "main", + "^v9.5.0$" : "main", "^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2" }, "copySourcePRLabels" : "^(?!backport$)(?!v\\d).*$", From e01d870b78ca52f262230989574fa607462ffd55 Mon Sep 17 00:00:00 2001 From: Ed Savage Date: Mon, 20 Apr 2026 15:30:07 +1200 Subject: [PATCH 2/2] Update .backportrc.json Co-authored-by: Valeriy Khakhutskyy <1292899+valeriy42@users.noreply.github.com> --- .backportrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.backportrc.json b/.backportrc.json index 4029b0a835..d71656f22b 100644 --- a/.backportrc.json +++ b/.backportrc.json @@ -1,6 +1,6 @@ { "upstream" : "elastic/ml-cpp", - "targetBranchChoices" : [ "main", "9.3", "9.2", "9.1", "9.0", "8.19", "8.18", "8.17", "7.17" ], + "targetBranchChoices" : [ "main", "9.4", "9.3", "8.19", "7.17" ], "targetPRLabels" : [ "backport" ], "branchLabelMapping" : { "^v9.5.0$" : "main",