From e6670382b5df357dedca366cdebb4362a7a4ca3e Mon Sep 17 00:00:00 2001 From: Nathan Hammond Date: Mon, 20 Mar 2023 14:19:54 +0800 Subject: [PATCH] Prevent dependabot from opening clap PRs clap@4 removed support for older Rust versions, this prevents @dependabot from spamming the repo with PRs for an update that won't be accepted. --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index eaa00e782b..c27c801904 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,6 @@ updates: interval: "daily" allow: - dependency-type: all + ignore: + - dependency-name: "clap" + update-types: ["version-update:semver-major"]