From b6cb57287fd74fcc989dcfc2d064ac2762ee019c Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Wed, 20 Aug 2025 00:17:13 -0700 Subject: [PATCH] dependabot: Exclude two testing directories to depndabot scanning (#38790) According to dependabot/dependabot-core#4364, dependabot now supports excluding certain directories from upgrade scanning. This change adds two problematic directories to the exclusion list. Signed-off-by: Martin Robinson --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9c43c37417a..4d7ae6c499f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,9 @@ version: 2 updates: - package-ecosystem: cargo directory: "/" + exclude-paths: + - "tests/blink_perf/**" + - "tests/wpt/**" schedule: interval: daily open-pull-requests-limit: 10