From 2742784e9614a9766a84083d60ec5a2ad4fdeefc Mon Sep 17 00:00:00 2001 From: Anthony Date: Mon, 17 Feb 2025 14:56:46 +0100 Subject: [PATCH] feat: add renovate.json --- .github/renovate.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000000..b1556271da --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "enabledManagers": [ + "github-actions" + ], + "packageRules": [ + { + "matchManagers": [ + "github-actions" + ], + "matchDepTypes": [ + "github-actions" + ], + "matchFileNames": [ + ".github/workflows/**" + ], + "schedule": [ + "every weekend" + ], + "labels": [ + "renovate/github-actions" + ], + "groupName": "GitHub Actions updates" + } + ] +}