From 40b8d40f6b89903d7776c94b8aec731e42e5dcd4 Mon Sep 17 00:00:00 2001 From: Alexander Suvorov Date: Tue, 18 Nov 2025 11:56:58 +0100 Subject: [PATCH 1/2] Set relative path --- .github/dependabot.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4bc014b632..7c68594710 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,7 +12,7 @@ updates: time: "09:00" timezone: "Europe/Dublin" open-pull-requests-limit: 3 - + # # Enable version updates for npm # @@ -24,7 +24,7 @@ updates: timezone: "Europe/Dublin" open-pull-requests-limit: 3 versioning-strategy: increase-if-necessary - + # # Python dependencies # @@ -35,7 +35,7 @@ updates: time: "09:00" timezone: "Europe/Dublin" versioning-strategy: increase-if-necessary - + - package-ecosystem: "pip" directory: "./tools/llm_bench/" schedule: @@ -43,7 +43,7 @@ updates: time: "09:00" timezone: "Europe/Dublin" versioning-strategy: increase-if-necessary - + - package-ecosystem: "pip" directory: "./tools/who_what_benchmark/" schedule: @@ -51,15 +51,15 @@ updates: time: "09:00" timezone: "Europe/Dublin" versioning-strategy: increase-if-necessary - + - package-ecosystem: "pip" - directory: "samples/" + directory: "./samples/" schedule: interval: "daily" time: "09:00" timezone: "Europe/Dublin" versioning-strategy: increase-if-necessary - + - package-ecosystem: "pip" directory: "/" schedule: From dc372d7eedf8b3dd25ac35692af6b396caaec07a Mon Sep 17 00:00:00 2001 From: Alexander Suvorov Date: Tue, 18 Nov 2025 12:19:10 +0100 Subject: [PATCH 2/2] group directories --- .github/dependabot.yml | 39 ++++++--------------------------------- 1 file changed, 6 insertions(+), 33 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7c68594710..ef0c758e0d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -29,39 +29,12 @@ updates: # Python dependencies # - package-ecosystem: "pip" - directory: "./tests/python_tests/" - schedule: - interval: "daily" - time: "09:00" - timezone: "Europe/Dublin" - versioning-strategy: increase-if-necessary - - - package-ecosystem: "pip" - directory: "./tools/llm_bench/" - schedule: - interval: "daily" - time: "09:00" - timezone: "Europe/Dublin" - versioning-strategy: increase-if-necessary - - - package-ecosystem: "pip" - directory: "./tools/who_what_benchmark/" - schedule: - interval: "daily" - time: "09:00" - timezone: "Europe/Dublin" - versioning-strategy: increase-if-necessary - - - package-ecosystem: "pip" - directory: "./samples/" - schedule: - interval: "daily" - time: "09:00" - timezone: "Europe/Dublin" - versioning-strategy: increase-if-necessary - - - package-ecosystem: "pip" - directory: "/" + directories: + - "/" + - "./samples/" + - "./tests/python_tests/" + - "./tools/llm_bench/" + - "./tools/who_what_benchmark/" schedule: interval: "daily" time: "09:00"