From d977689cc1547bb2a08b9a237e5520af5923d464 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Thu, 8 Oct 2020 19:15:23 +0100 Subject: [PATCH] chore(NA): add missing branches into backportrc configuration file (#79848) (#80027) * chore(NA): add missing branches into backportrc configuration file * chore(NA): fix extra line for defined regexs # Conflicts: # .backportrc.json --- .backportrc.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.backportrc.json b/.backportrc.json index f921512df2d0..56a6ddc254d1 100644 --- a/.backportrc.json +++ b/.backportrc.json @@ -1,7 +1,9 @@ { "upstream": "elastic/kibana", "targetBranchChoices": [ + { "name": "master", "checked": true }, { "name": "7.x", "checked": true }, + "7.10", "7.9", "7.8", "7.7", @@ -25,7 +27,8 @@ ], "targetPRLabels": ["backport"], "branchLabelMapping": { - "^v7.10.0$": "7.x", + "^v8.0.0$": "master", + "^v7.11.0$": "7.x", "^v(\\d+).(\\d+).\\d+$": "$1.$2" } -} +} \ No newline at end of file