chore(deps): improve dependabot config with grouping and schedule#32
Open
chore(deps): improve dependabot config with grouping and schedule#32
Conversation
- Switch from daily to weekly (Monday 04:00 UTC) to reduce noise - Add open-pull-requests-limit of 10 to handle 10+ tracked actions - Add conventional commit prefix chore(deps) - Group actions into docker-actions, security-actions, and github-actions to produce batched PRs instead of one per action
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s Dependabot configuration for GitHub Actions to reduce update noise and batch related action updates into grouped PRs.
Changes:
- Switched Dependabot schedule from daily to weekly (Mondays at 04:00 UTC).
- Increased
open-pull-requests-limitand standardized Dependabot commit message prefix. - Added Dependabot
groupsto batch related GitHub Actions updates.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+18
to
+21
| security-actions: | ||
| patterns: | ||
| - "aquasecurity/*" | ||
| - "github/codeql-action*" |
There was a problem hiding this comment.
PR description says the security-actions group is intended to cover only aquasecurity/trivy-action, but the config uses the broader pattern aquasecurity/* which will group any Aquasecurity action if added in the future. Either narrow the pattern (e.g., to just the trivy action) or update the PR description to match the broader grouping intent.
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
dailytoweekly(Monday 04:00 UTC) — action releases are infrequent, daily was unnecessary noiseopen-pull-requests-limit: 10— default of 5 would be exhausted by the 10+ actions in usecommit-message.prefix: "chore(deps)"for conventional commit formatgroupsto batch related PRs:docker-actions— alldocker/*actions (buildx, build-push, qemu, login)security-actions—aquasecurity/trivy-action+github/codeql-actiongithub-actions—actions/*,gautamkrishnar/*,gaurav-nelson/*,DavidAnson/*Test plan