-
-
Notifications
You must be signed in to change notification settings - Fork 468
chore: Add Dependabot #5380
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
base: main
Are you sure you want to change the base?
chore: Add Dependabot #5380
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,6 +1,24 @@ | ||
| version: 2 | ||
| registries: | ||
| gradle-plugin-portal: | ||
| type: maven-repository | ||
| url: https://plugins.gradle.org/m2 | ||
| username: dummy # Required by dependabot | ||
| password: dummy # Required by dependabot | ||
| updates: | ||
| - package-ecosystem: "gradle" | ||
| directory: "/" | ||
| registries: | ||
| - gradle-plugin-portal | ||
| schedule: | ||
|
Member
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. I think we need a custom commit message to match our
Contributor
Author
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. good point, will update
Contributor
Author
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. added |
||
| interval: "daily" | ||
|
Member
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. l: My vote would be for weekly and we can see about increasing cadence as we go, esp as we were getting by with nothing.
Contributor
Author
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. im curious what other think here. i would favor the daily at first so we can catch up and then we can adjust it later once we've caught up. |
||
| ignore: | ||
| - dependency-name: "org.springframework.boot*" | ||
| commit-message: | ||
| prefix: "chore(deps)" | ||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: weekly | ||
| interval: "daily" | ||
| commit-message: | ||
| prefix: "chore(deps)" | ||
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.
l/m: Thoughts about using groups to reduce the number of PRs generated (and the pain of sequential merges) + ensure we only get a single PR for deps that need to be bumped together?
We could even have dependabot group everything into a single PR...
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.
That's a good point. I think the issue here is that some of our version numbers are explicitly set to be older versions in order to ensure compatibility like the spring boot.
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.
Ah, good to exclude those versions so we don't get pinged for them repeatedly.
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.
I added the exclusion for spring boot. I know there are others. We can add them as they come in.