-
Notifications
You must be signed in to change notification settings - Fork 1
chore: ignore Dependabot patch releases #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 |
|---|---|---|
|
|
@@ -4,6 +4,9 @@ updates: | |
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| ignore: | ||
| - dependency-name: "*" | ||
| update-types: ["version-update:semver-patch"] | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Dependabot applies Useful? React with 👍 / 👎. |
||
| open-pull-requests-limit: 5 | ||
| commit-message: | ||
| prefix: "deps" | ||
|
|
@@ -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" | ||
|
|
||
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.
Allow routine patch updates
This ignore rule applies to every dependency, so Dependabot will not open any semver-patch updates for this ecosystem. That makes the
cargo-minor-and-patchgroup misleading because its patch updates can never reach the group, and it also suppresses routine GitHub Actions patch updates. Remove these broad ignore rules or narrow them to the specific dependencies that should be excluded.[RULE] dependency-update-policy ·