From c31c6990ee3165eb9daf15344fb7abaf5d8a42e0 Mon Sep 17 00:00:00 2001 From: Dave Thaler Date: Sat, 13 Sep 2025 08:54:09 -0700 Subject: [PATCH] Update dependabot settings Major version changes are by definition breaking changes and dependabot cannot change the things they break (e.g., the reason PR #398 failed tests). Non-major changes are backwards compatible and safe to update with dependabot. Signed-off-by: Dave Thaler --- .github/dependabot.yml | 27 ++++++++------------------- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e231a8f..fa3f0f4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -17,7 +17,10 @@ updates: - "*" - package-ecosystem: nuget - directory: /OrcanodeMonitor + directories: + - "/OrcanodeMonitor" + - "/Test" + - "/TransferData" schedule: interval: weekly day: "saturday" @@ -25,21 +28,7 @@ updates: actions: patterns: - "*" - - - package-ecosystem: nuget - directory: /Test - schedule: - interval: daily - groups: - actions: - patterns: - - "*" - - - package-ecosystem: nuget - directory: /TransferData - schedule: - interval: daily - groups: - actions: - patterns: - - "*" + ignore: + - dependency-name: "*" + update-types: + - "version-update:semver-major"