From af430b37f428cec25c36d7b1b20e5dbeedfbf33c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Di=20Domenico?= Date: Mon, 6 Jul 2026 10:54:54 +0200 Subject: [PATCH 1/2] chore: add renovate --- .github/renovate.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 000000000..f7157afc2 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "schedule": ["on monday"], + "prHourlyLimit": 0, + "minimumReleaseAge": "14 days", + "automerge": false, + "packageRules": [ + { + "description": "Desactivation globale de renovate", + "matchFileNames": ["*/**"], + "enabled": false + }, + { + "description": "Mises à jour des GitHub Actions", + "matchManagers": ["github-actions"], + "groupName": "github-actions updates", + "separateMajorMinor": false + }, + { + "description": "Mises à jour des dépendances - Converter", + "matchFileNames": ["converter/**"], + "groupName": "converter updates" + } + ] +} From 5d0fbfa6f8f5e4ca1232abc4be3b3cd51535b5e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Di=20Domenico?= Date: Mon, 6 Jul 2026 17:51:21 +0200 Subject: [PATCH 2/2] fix(renovate): enable converter & github action packageRules --- .github/renovate.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index f7157afc2..1fb506aaa 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -15,12 +15,14 @@ "description": "Mises à jour des GitHub Actions", "matchManagers": ["github-actions"], "groupName": "github-actions updates", - "separateMajorMinor": false + "separateMajorMinor": false, + "enabled": true }, { "description": "Mises à jour des dépendances - Converter", "matchFileNames": ["converter/**"], - "groupName": "converter updates" + "groupName": "converter updates", + "enabled": true } ] }