From dbe8fc5ec88aa351cf056d07a16641bd54a3b03e Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Sat, 21 Oct 2023 18:11:12 -0700 Subject: [PATCH] action: reduce dependabot frequency from weekly to monthly, get rid of email spam (#2289) --- .github/dependabot.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index affcf763..af53766b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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']