From b993ac43c14479606868421a877e5024da3da68d Mon Sep 17 00:00:00 2001 From: Ariel Ben-Yehuda Date: Thu, 31 Jul 2025 21:53:29 +0000 Subject: [PATCH] ci: get dependabot to not do patch/minor updates --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e3c5544..9be07c1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,7 @@ updates: directory: "." schedule: interval: "weekly" + ignore: + # For all packages, ignore all patch/minor updates. Cargo will consume these versions automatically and metrique does not pin dependencies. + - dependency-name: "*" + update-types: ["version-update:semver-patch", "version-update:semver-minor"]