From aec9d73dea47911877205bcab80e63fe413d8023 Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Khan Date: Sun, 18 Feb 2024 14:52:46 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Automate=20dep=20updates=20with?= =?UTF-8?q?=20Renovate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will only do something after I've installed the renovate app in Github settings. I'll do this for the whole `dbus2` org. --- .github/renovate.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..241a2db --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,14 @@ +{ + "packageRules": [ + { + "matchManagers": ["github-actions"], + "commitMessagePrefix": "⬆️ " + }, + { + "matchManagers": ["cargo"], + "commitMessagePrefix": "⬆️ ", + "commitMessageTopic": "{{depName}}", + "lockFileMaintenance": { "enabled": true } + } + ] +}