From 55b5f9f95684e5b730b89baa8237a1c2aa65a370 Mon Sep 17 00:00:00 2001 From: Alexander Jones Date: Fri, 24 Jan 2025 11:44:36 -0600 Subject: [PATCH] Ignore chai major version updates in Dependabot config --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c738b73b..3fc56b18 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,6 +10,10 @@ updates: target-branch: 'develop' schedule: interval: 'weekly' + ignore: + - dependency-name: 'chai' + update-types: + - 'version-update:semver-major' - package-ecosystem: 'gitsubmodule' directory: '/' target-branch: 'develop'