From c76137d89ee95fd8ac288f7e54a72274034bfd32 Mon Sep 17 00:00:00 2001 From: Sumit Solanki Date: Tue, 23 Jun 2026 12:31:33 +0530 Subject: [PATCH] dependabot: ignore ansible major version updates (#13320) Ansible major versions are upgraded manually to support multiple OS/Python versions. Configure Dependabot to still propose minor and patch updates while skipping semver-major bumps. Signed-off-by: Sumit Solanki --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 74b909c05..46013a536 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,6 +12,10 @@ updates: patterns: - molecule - molecule-plugins* + ignore: + # Ansible major versions are upgraded manually to support multiple OS/Python versions. + - dependency-name: "ansible" + update-types: ["version-update:semver-major"] - package-ecosystem: "github-actions" directory: "/" labels: