-
Notifications
You must be signed in to change notification settings - Fork 551
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
ci: use dependabot group feature #4087
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 | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,11 +1,26 @@ | ||||||||||||||||||||||
--- | ||||||||||||||||||||||
version: 2 | ||||||||||||||||||||||
enable-beta-ecosystems: true | ||||||||||||||||||||||
updates: | ||||||||||||||||||||||
- package-ecosystem: "gomod" | ||||||||||||||||||||||
directory: "/" | ||||||||||||||||||||||
schedule: | ||||||||||||||||||||||
interval: "weekly" | ||||||||||||||||||||||
rebase-strategy: "disabled" | ||||||||||||||||||||||
groups: | ||||||||||||||||||||||
golang-dependencies: | ||||||||||||||||||||||
patterns: | ||||||||||||||||||||||
- "github.com/golang*" | ||||||||||||||||||||||
k8s-dependencies: | ||||||||||||||||||||||
patterns: | ||||||||||||||||||||||
- "k8s.io*" | ||||||||||||||||||||||
- "sigs.k8s.io*" | ||||||||||||||||||||||
github-dependencies: | ||||||||||||||||||||||
patterns: | ||||||||||||||||||||||
- "github.com*" | ||||||||||||||||||||||
Comment on lines
+16
to
+20
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.
Suggested change
I think for
only but for
I guess I'm not confusing things but I have seen
from here https://github.com/rook/rook/blob/master/.github/workflows/canary-integration-test.yml#L4-L15 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. Thanks @subhamkrai For me this looks to be enough, will revisit this if required in the followup PR. |
||||||||||||||||||||||
exclude-patterns: | ||||||||||||||||||||||
- "github.com/golang*" | ||||||||||||||||||||||
nixpanic marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||
- "github.com/container-storage-interface/spec" | ||||||||||||||||||||||
labels: | ||||||||||||||||||||||
- rebase | ||||||||||||||||||||||
commit-message: | ||||||||||||||||||||||
|
@@ -53,6 +68,19 @@ updates: | |||||||||||||||||||||
schedule: | ||||||||||||||||||||||
interval: "weekly" | ||||||||||||||||||||||
rebase-strategy: "disabled" | ||||||||||||||||||||||
groups: | ||||||||||||||||||||||
golang-dependencies: | ||||||||||||||||||||||
patterns: | ||||||||||||||||||||||
- "github.com/golang*" | ||||||||||||||||||||||
k8s-dependencies: | ||||||||||||||||||||||
patterns: | ||||||||||||||||||||||
- "k8s.io*" | ||||||||||||||||||||||
- "sigs.k8s.io*" | ||||||||||||||||||||||
github-dependencies: | ||||||||||||||||||||||
patterns: | ||||||||||||||||||||||
- "github.com*" | ||||||||||||||||||||||
exclude-patterns: | ||||||||||||||||||||||
- "github.com/golang*" | ||||||||||||||||||||||
labels: | ||||||||||||||||||||||
- rebase | ||||||||||||||||||||||
- ci/skip/e2e | ||||||||||||||||||||||
|
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.
question, will this be
**
or*
in patterns?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.
it will be
*
as i have seen here