From a42c189184a3fe97fde72edb7265b0b6b2b613c3 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 22 Jun 2026 10:44:37 +0000 Subject: [PATCH] Exclude test files from Dependabot updates Add exclude-paths so Dependabot ignores the test fixture manifests under test/ (and the test_*.py modules), preventing unwanted update PRs for intentionally pinned/broken test packages. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01JDBhcaeYWbKi4Rc9qVgNgE --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6a7695c..30b6f3b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,6 @@ updates: directory: "/" schedule: interval: "weekly" + exclude-paths: + - "test/**" + - "ossprey/test_*.py"