From 93244f4dc25f24b17e7bcdb0597b8ad0d08d10f3 Mon Sep 17 00:00:00 2001 From: Julien Mailleret <8582351+jmlrt@users.noreply.github.com> Date: Thu, 10 Dec 2020 15:52:30 +0100 Subject: [PATCH] [meta] add config for backport (#971) This commit add the config file to manage backport PR using https://github.com/sqren/backport --- .backportrc.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .backportrc.json diff --git a/.backportrc.json b/.backportrc.json new file mode 100644 index 000000000..001ba1941 --- /dev/null +++ b/.backportrc.json @@ -0,0 +1,8 @@ +{ + "upstream": "elastic/helm-charts", + "targetBranchChoices": ["6.8", "7.10", "7.x"], + "all": true, + "prFilter": "label:need-backport", + "targetPRLabels": ["backport"], + "sourcePRLabels": ["backported"] +}