Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/dependabot.yml
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"
Copy link

Copilot AI Jan 2, 2026

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-limit setting 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 adding open-pull-requests-limit: 5 to maintain consistency with the GitHub Actions configuration and prevent excessive PRs.

Suggested change
interval: "daily"
interval: "daily"
open-pull-requests-limit: 5

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Jan 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a groups configuration for the Gradle ecosystem similar to the GitHub Actions configuration. Grouping minor and patch updates together helps reduce PR noise by combining related dependency updates into single pull requests. This would maintain consistency with the GitHub Actions configuration and improve the dependency update workflow.

Suggested change
interval: "daily"
interval: "daily"
open-pull-requests-limit: 5
groups:
gradle-minor-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"

Copilot uses AI. Check for mistakes.
# Monitor GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 5
groups:
github-actions-minor-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"