Skip to content
Merged
Changes from 1 commit
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
21 changes: 14 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "gomod" # See documentation for possible values
directory: "/" # Location of package manifests
- directory: "/"
groups:
minor-patch:
update-types:
- "minor"
- "patch"
ignore:
versions: "<1"
Copy link
Collaborator

Choose a reason for hiding this comment

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

can you clarify again why we do this?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

This is an assumption I've come to accept - if a project is before v1, it hasn't settled on an API, so changes are more likely to cause manual labor. I'd rather not let one or two <1 projects hold up easy merging for the rest of the upgrades, so this lets us move them into their own MRs.

Copy link
Collaborator

Choose a reason for hiding this comment

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

You should probably add a comment for that in the dependabot config. Sounds good to me!

package-ecosystem: "gomod"
schedule:
interval: "weekly"

- directory: "/"
package-ecosystem: "gomod"
schedule:
interval: "weekly"