From 88c5c7db878f2fd4274d79b60632a580063e1516 Mon Sep 17 00:00:00 2001 From: Exelo Date: Thu, 22 Jan 2026 15:58:32 +0100 Subject: [PATCH 1/2] chore: add renovate config --- .github/labels.yml | 4 ++++ .github/renovate.json | 7 +++++++ 2 files changed, 11 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/labels.yml b/.github/labels.yml index 37debc5..20e3daf 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -14,6 +14,10 @@ description: "Changes to our CI configuration files and scripts" color: "721cdb" +- name: "dependencies" + description: "Update of dependencies" + color: "6f38c2" + - name: "documentation" description: "Improvements or additions to documentation" color: "0075ca" diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..49c46d4 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "baseBranches": ["main"], + "rebaseWhen": "conflicted", + "labels": ["dependencies"] +} From dd141fd2ff9b258a7505572fbef704a3125b0535 Mon Sep 17 00:00:00 2001 From: Exelo Date: Thu, 22 Jan 2026 16:03:28 +0100 Subject: [PATCH 2/2] chore: add reviewers to renovate config --- .github/renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 49c46d4..2862859 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -3,5 +3,6 @@ "extends": ["config:recommended"], "baseBranches": ["main"], "rebaseWhen": "conflicted", - "labels": ["dependencies"] + "labels": ["dependencies"], + "reviewers": ["Exeloo"] }