From 6b24e0ae4bc86482b90535f6ab8f3dd41cffc72f Mon Sep 17 00:00:00 2001 From: tzugen <67737443+tzugen@users.noreply.github.com> Date: Mon, 4 Oct 2021 18:45:33 +0200 Subject: [PATCH] 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. --- .github/dependabot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index eb12cbda..5fa213c4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,4 +8,8 @@ updates: - package-ecosystem: "gradle" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "weekly" + interval: "monthly" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-patch"] +