From b11c5e87f52c8bd17a69da26156d8db1da612c4e Mon Sep 17 00:00:00 2001 From: Boshen Date: Tue, 23 Jan 2024 15:07:55 +0800 Subject: [PATCH] ci: only update github-actions and cargo dependencies (#5410) --- .github/renovate.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index d039eb81ee2..992737d2218 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,5 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "enabledManagers": ["github-actions", "cargo"], "ignorePaths": [ "**/tests/**", "**/fixtures/**", @@ -12,6 +13,13 @@ "matchManagers": ["github-actions"], "schedule": ["on wednesday"], "assignees": ["@Boshen"] + }, + { + "groupName": "cargo", + "matchManagers": ["github-actions"], + "schedule": ["on wednesday"], + "assignees": ["@Boshen"], + "excludePackagePatterns": ["swc"] } ] }