Run dependabot monthly
Now that our dependencies are up-to-date, run dependabot only once per month, and also ignore patch releases, in order to avoid frequent PRs that all require a review by us.
This commit is contained in:
parent
90e269525e
commit
6b24e0ae4b
|
@ -8,4 +8,8 @@ updates:
|
||||||
- package-ecosystem: "gradle" # See documentation for possible values
|
- package-ecosystem: "gradle" # See documentation for possible values
|
||||||
directory: "/" # Location of package manifests
|
directory: "/" # Location of package manifests
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "monthly"
|
||||||
|
ignore:
|
||||||
|
- dependency-name: "*"
|
||||||
|
update-types: ["version-update:semver-patch"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue