action: reduce dependabot frequency from weekly to monthly, get rid of email spam (#2289)

This commit is contained in:
Joe Pea 2023-10-21 18:11:12 -07:00 committed by GitHub
parent 2bbb65fdd1
commit dbe8fc5ec8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,9 +9,19 @@ updates:
directory: '/' # Location of package manifests
open-pull-requests-limit: 10
schedule:
interval: 'weekly'
interval: monthly
ignore:
# For all dependencies, trigger pull requests only for semver-major updates (ignore minor and patch).
- dependency-name: '*'
update-types:
['version-update:semver-patch', 'version-update:semver-minor']
- package-ecosystem: 'github-actions'
directory: '/'
open-pull-requests-limit: 10
schedule:
interval: monthly
ignore:
# For all dependencies, trigger pull requests only for semver-major and semver-minor updates (ignore patch).
- dependency-name: '*'
update-types:
['version-update:semver-patch', 'version-update:semver-minor']