From 613db1bf9c0a7a3893c173a25185135047e21000 Mon Sep 17 00:00:00 2001 From: Boshen Date: Tue, 23 Jan 2024 14:31:46 +0800 Subject: [PATCH] ci: setup renovatebot (#5406) Only `github-actions` is configured for this PR for testing purposes relates #5387 --- .github/renovate.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000000..d039eb81ee2 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "ignorePaths": [ + "**/tests/**", + "**/fixtures/**", + "webpack-examples/**", + "webpack-test/**" + ], + "packageRules": [ + { + "groupName": "github-actions", + "matchManagers": ["github-actions"], + "schedule": ["on wednesday"], + "assignees": ["@Boshen"] + } + ] +}