From 04d7069d0bebb72e12049aeb93e97438bb418fd6 Mon Sep 17 00:00:00 2001 From: Bryan Beverly Date: Thu, 28 May 2026 14:58:02 -0700 Subject: [PATCH] Fix GitHub Actions grouping rule to use matchManagers github-actions is a manager name, not a datasource. The actual datasources are github-tags, github-digest, and github-runners. Using matchManagers is the correct field per Renovate docs. Co-authored-by: Cursor --- renovate-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate-config.json b/renovate-config.json index a286b79..8607fb4 100644 --- a/renovate-config.json +++ b/renovate-config.json @@ -28,7 +28,7 @@ "packageRules": [ { "description": "Group all GitHub Actions updates into a single PR", - "matchDatasources": ["github-actions"], + "matchManagers": ["github-actions"], "groupName": "github-actions" } ]