From 9fae53b591de1921315dc252a78a6b5b1364f213 Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Mon, 2 Sep 2024 21:43:19 +0200 Subject: [PATCH 1/2] chore: configure Renovate --- .github/renovate.json | 47 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000000..40839cef01 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,47 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + "group:allNonMajor", + "schedule:monthly" + ], + "reviewers": ["team:developer"], + "packageRules": [ + { + "matchManagers": ["github-actions"], + "groupName": "Github Action", + "labels": ["github_actions", "area: dependencies"], + "matchPackageNames": [ + "*" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ] + }, + { + "matchManagers": ["npm", "nvm"], + "groupName": "Website", + "labels": ["lang: javascript", "area: dependencies"], + "matchPackageNames": [ + "*" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ] + }, + { + "matchManagers": ["gomod"], + "groupName": "golang", + "labels": ["lang: go", "area: dependencies"], + "matchPackageNames": [ + "*" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ] + } + ] +} From dfef35ed2dce17488a8076a90f81e7d688aa66de Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Sat, 7 Sep 2024 22:48:49 +0200 Subject: [PATCH 2/2] refactor: github actions label --- .github/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 40839cef01..5979428655 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -10,7 +10,7 @@ { "matchManagers": ["github-actions"], "groupName": "Github Action", - "labels": ["github_actions", "area: dependencies"], + "labels": ["area: github actions", "area: dependencies"], "matchPackageNames": [ "*" ],