-
Notifications
You must be signed in to change notification settings - Fork 48
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
dependabot: exclude rust-vmm crates from monthly task #770
dependabot: exclude rust-vmm crates from monthly task #770
Conversation
Without this, dependabot can open 2 PRs with same updates, see: - rust-vmm#762 - rust-vmm#769] Signed-off-by: Stefano Garzarella <[email protected]>
I have tried three combination and triggered them in a new folk of
I propose we drop version: 2
updates:
- package-ecosystem: cargo
directories:
- /
- /staging/
schedule:
interval: weekly
allow:
- dependency-name: vhost
- dependency-name: vhost-user-backend
- dependency-name: virtio-bindings
- dependency-name: virtio-queue
- dependency-name: virtio-vsock
- dependency-name: vm-memory
- dependency-name: vmm-sys-util
groups:
rust-vmm:
patterns:
- '*'
- package-ecosystem: cargo
directories:
- /
- /staging/
schedule:
interval: monthly
allow:
- dependency-type: all
ignore:
- dependency-name: vhost
- dependency-name: vhost-user-backend
- dependency-name: virtio-bindings
- dependency-name: virtio-queue
- dependency-name: virtio-vsock
- dependency-name: vm-memory
- dependency-name: vmm-sys-util
groups:
non-rust-vmm:
patterns:
- '*'
# Makes it possible to have another config for the same directory.
# https://github.com/dependabot/dependabot-core/issues/1778#issuecomment-1988140219
target-branch: main
- package-ecosystem: gitsubmodule
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 10 which would just raise two PRs at most 😉 (btw, the UX of dependabot is really horrible 🙃) |
This is expected, that tried only to fix duplication in gouped PRs, why including it in the comparison?
So, this should confirm that the issue was
I don't understand the difference, can you compare also with the same (just 2 groups), but using I mean something like this (not sure if this is the same of your option 2):
|
This should have a problem since they mention:
So better what @TimePrinciple is proposing. |
This should be addressed by #774 |
Without this, dependabot can open 2 PRs with same updates, see:
Summary of the PR
Please summarize here why the changes in this PR are needed.
Requirements
Before submitting your PR, please make sure you addressed the following
requirements:
git commit -s
), and the commit message has max 60 characters for thesummary and max 75 characters for each description line.
test.
Release" section of CHANGELOG.md (if no such section exists, please create one).
unsafe
code is properly documented.