From 5d7c5f6d6af855eb77a30d8a7a6fb681df1e5c8c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=A9dric=20Exbrayat?=
 <cexbrayat@users.noreply.github.com>
Date: Fri, 11 Mar 2022 08:54:24 +0100
Subject: [PATCH] chore: enable renovate

---
 .github/renovate.json5 | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 .github/renovate.json5

diff --git a/.github/renovate.json5 b/.github/renovate.json5
new file mode 100644
index 00000000..de01b8ea
--- /dev/null
+++ b/.github/renovate.json5
@@ -0,0 +1,34 @@
+{
+  "extends": [
+    "config:base"
+  ],
+  "enabledManagers": [
+    "npm"
+  ],
+  // target chore/next branch
+  "baseBranches": [
+    "chore/next"
+  ],
+  // only 1 PR at the same time (to avoid cascading rebase)
+  "prConcurrentLimit": 1,
+  // auto-merge if build is OK
+  "automerge": true,
+  "packageRules": [
+    // group all minor dependencies, once a week
+    {
+      "matchPackagePatterns": [
+        "*"
+      ],
+      "matchUpdateTypes": [
+        "minor",
+        "patch"
+      ],
+      "matchCurrentVersion": ">=1",
+      "groupName": "all non-major dependencies",
+      "groupSlug": "all-minor-patch",
+      "schedule": [
+        "after 1am on Thursday"
+      ]
+    }
+  ]
+}
-- 
GitLab