Skip to content

Commit b4dcd8c

Browse files
authored
[GHA] Fix samples dependabot duplicated PRs (#3031)
<!-- Keep your pull requests (PRs) as atomic as possible. That increases the likelihood that an individual PR won't be stuck because of adjacent problems, merge conflicts, or code review. Your merged PR is going to appear in the automatically generated release notes on GitHub. So the clearer the title the better. --> ## Description Duplicated PR: #3014 #3015 There is some inconsistency how `/samples` and `/tests` scanned. This is a fix attempt. Group directories and prefix samples with `.`
1 parent ee9b041 commit b4dcd8c

File tree

1 file changed

+8
-35
lines changed

1 file changed

+8
-35
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ updates:
1212
time: "09:00"
1313
timezone: "Europe/Dublin"
1414
open-pull-requests-limit: 3
15-
15+
1616
#
1717
# Enable version updates for npm
1818
#
@@ -24,44 +24,17 @@ updates:
2424
timezone: "Europe/Dublin"
2525
open-pull-requests-limit: 3
2626
versioning-strategy: increase-if-necessary
27-
27+
2828
#
2929
# Python dependencies
3030
#
3131
- package-ecosystem: "pip"
32-
directory: "./tests/python_tests/"
33-
schedule:
34-
interval: "daily"
35-
time: "09:00"
36-
timezone: "Europe/Dublin"
37-
versioning-strategy: increase-if-necessary
38-
39-
- package-ecosystem: "pip"
40-
directory: "./tools/llm_bench/"
41-
schedule:
42-
interval: "daily"
43-
time: "09:00"
44-
timezone: "Europe/Dublin"
45-
versioning-strategy: increase-if-necessary
46-
47-
- package-ecosystem: "pip"
48-
directory: "./tools/who_what_benchmark/"
49-
schedule:
50-
interval: "daily"
51-
time: "09:00"
52-
timezone: "Europe/Dublin"
53-
versioning-strategy: increase-if-necessary
54-
55-
- package-ecosystem: "pip"
56-
directory: "samples/"
57-
schedule:
58-
interval: "daily"
59-
time: "09:00"
60-
timezone: "Europe/Dublin"
61-
versioning-strategy: increase-if-necessary
62-
63-
- package-ecosystem: "pip"
64-
directory: "/"
32+
directories:
33+
- "/"
34+
- "./samples/"
35+
- "./tests/python_tests/"
36+
- "./tools/llm_bench/"
37+
- "./tools/who_what_benchmark/"
6538
schedule:
6639
interval: "daily"
6740
time: "09:00"

0 commit comments

Comments
 (0)