Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-05-30 14:45:15 +0300
committerRobert Adam <dev@robert-adam.de>2021-05-30 14:45:15 +0300
commit5f351538a0b4fe8d1f1d336ecbc1a648fc19916e (patch)
tree303be42bdc3df24a2ddb6e92fc7dba8cdf2a1230 /.backportrc.json
parentb0cb7871df2feb4d53e2ceb28fe8cc0467342abc (diff)
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.
Diffstat (limited to '.backportrc.json')
-rw-r--r--.backportrc.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/.backportrc.json b/.backportrc.json
new file mode 100644
index 000000000..2f0e75c35
--- /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}"
+}