-
Notifications
You must be signed in to change notification settings - Fork 0
chore: add dependabot #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,20 @@ | ||||||||||||||||||||||
| version: 2 | ||||||||||||||||||||||
| updates: | ||||||||||||||||||||||
| # Monitor Gradle dependencies | ||||||||||||||||||||||
| - package-ecosystem: "gradle" | ||||||||||||||||||||||
| directory: "/" | ||||||||||||||||||||||
| schedule: | ||||||||||||||||||||||
| interval: "daily" | ||||||||||||||||||||||
|
||||||||||||||||||||||
| interval: "daily" | |
| interval: "daily" | |
| open-pull-requests-limit: 5 | |
| groups: | |
| gradle-minor-patch: | |
| patterns: | |
| - "*" | |
| update-types: | |
| - "minor" | |
| - "patch" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Gradle configuration is missing the
open-pull-requests-limitsetting that is present in the GitHub Actions configuration. Without this limit, Dependabot could potentially create an unlimited number of pull requests for Gradle dependency updates. Consider addingopen-pull-requests-limit: 5to maintain consistency with the GitHub Actions configuration and prevent excessive PRs.