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
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ updates:
interval: daily
commit-message:
prefix: build(docker)
open-pull-requests-limit: 0

Choose a reason for hiding this comment

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

medium

While setting open-pull-requests-limit: 0 achieves the goal of reducing PR noise, it completely disables automated dependency updates. This introduces a risk of using outdated dependencies with potential security vulnerabilities, as manual updates can be easily forgotten.

A safer alternative would be to reduce the update frequency. Consider changing interval: daily (on line 7) to weekly or monthly. This would significantly cut down on the number of PRs while still keeping your dependencies automatically updated.

groups:
docker:
update-types: [minor, patch]
Expand All @@ -17,6 +18,7 @@ updates:
interval: daily
commit-message:
prefix: ci(github-actions)
open-pull-requests-limit: 0
groups:
github-actions:
update-types: [minor, patch]
Expand All @@ -27,6 +29,7 @@ updates:
interval: daily
commit-message:
prefix: build(uv)
open-pull-requests-limit: 0
groups:
uv:
update-types: [minor, patch]
Loading