ci: add patterns: ['*'] to dependabot actions-minor-patch group (#406 follow-up)#407
Merged
ctrl-alt-automate merged 1 commit intodevfrom Apr 18, 2026
Merged
Conversation
Gemini caught this post-merge on PR #406: Dependabot's `groups` block requires at least one selection criterion (`patterns`, `exclude-patterns`, or `dependency-type`) for the group to match any dependencies. Without one, the group silently matches zero dependencies and every update opens its own PR — defeating the purpose of grouping. Added `patterns: ['*']` to match all GitHub Actions in the group, plus an inline comment explaining why the selector is mandatory.
There was a problem hiding this comment.
Code Review
This pull request updates the .github/dependabot.yml configuration by adding a wildcard pattern to the actions-minor-patch group. This change ensures that Dependabot correctly identifies and groups minor and patch updates for GitHub Actions, avoiding excessive individual pull requests. I have no feedback to provide.
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
Fixup for PR #406. Gemini caught this ~1 min after that PR merged.
Issue
The `actions-minor-patch` group in `.github/dependabot.yml` has no selection criterion (`patterns`, `exclude-patterns`, or `dependency-type`). Per GitHub Dependabot docs, a group without at least one of these silently matches zero dependencies — so the grouping has no effect and every update would still open its own PR.
Fix
Added `patterns: ['*']` to match all GitHub Actions in the group, plus an inline comment explaining why the selector is required (so future contributors don't make the same mistake).
Test plan