From 5f351538a0b4fe8d1f1d336ecbc1a648fc19916e Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Sun, 30 May 2021 13:45:15 +0200 Subject: [PATCH] MAINT: Add config for backport CLI In order to use https://github.com/sqren/backport we need a bit of configuration in our project but in the end this has the potential to save use a lot of time when backporting commits to a stable release series. --- .backportrc.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .backportrc.json diff --git a/.backportrc.json b/.backportrc.json new file mode 100644 index 00000000000..2f0e75c35f2 --- /dev/null +++ b/.backportrc.json @@ -0,0 +1,11 @@ +{ + "upstream": "mumble-voip/mumble", + "targetBranchChoices": [ + { "name": "1.4.x", "checked": true }, + "1.3.x" + ], + "targetPRLabels": ["backport"], + "fork": true, + "multipleCommits": true, + "prTitle": "Backport \"{commitMessages}\" to {targetBranch}" +}