From 7a06384edbd15c635b8363540855295c4ae9dfaa Mon Sep 17 00:00:00 2001 From: Anthony PHAM Date: Mon, 17 Feb 2025 16:25:29 +0100 Subject: [PATCH] feat: add renovate.json (#533) --- .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" + } + ] +}