Fix GitHub Actions grouping rule to use matchManagers#11
Merged
Conversation
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 <cursoragent@cursor.com>
bryanbeverly
commented
May 28, 2026
bryanbeverly
left a comment
Contributor
Author
There was a problem hiding this comment.
This would've worked as-is, but it's technically wrong and only works because of they're letting it work... in case a new Renovate version "fixes" this, we should use the correct function.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
matchDatasources: ["github-actions"]tomatchManagers: ["github-actions"]in the shared presetgithub-actionsis a Renovate manager, not a datasource. The actual datasources aregithub-tags,github-digest, andgithub-runnersContext
Part of the Dependency Strategy Unification plan. After merge, tag as
v1.0.1.Made with Cursor
Note
Low Risk
Config-only change to Renovate grouping; no runtime app or security logic affected.
Overview
Corrects the shared Renovate preset so the GitHub Actions grouping rule actually applies: the package rule now uses
matchManagers:["github-actions"]instead ofmatchDatasources, becausegithub-actionsis a Renovate manager, not a datasource.Without this fix, the rule would not match Action updates as intended, so grouped
github-actionsPRs might not be produced.Reviewed by Cursor Bugbot for commit 04d7069. Bugbot is set up for automated code reviews on this repo. Configure here.