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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ updates:
directory: /
schedule:
interval: weekly
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
Comment on lines +8 to +9

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Preserve Dependabot security updates

When a Cargo or GitHub Actions dependency has a vulnerability fix, these wildcard rules also suppress its security-update PR: for security updates, Dependabot ignores the update-types attribute and still applies dependency-name, so "*" excludes every dependency. Use a mechanism that disables routine patch version PRs without applying a wildcard ignore rule to security updates.

Useful? React with 👍 / 👎.

open-pull-requests-limit: 5
commit-message:
prefix: "deps"
Expand All @@ -18,6 +21,9 @@ updates:
directory: /
schedule:
interval: weekly
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
open-pull-requests-limit: 5
commit-message:
prefix: "ci"
Expand Down
Loading