Skip to content

Commit f4149cd

Browse files
committed
Try skipping dependenabot updates on benchmarks
1 parent 9e29e3f commit f4149cd

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,14 @@ updates:
44
directory: "/pyperformance/requirements"
55
schedule:
66
interval: "monthly"
7+
# Don't update test dependencies for reproducibility.
8+
# Dependabot doesn't support excluding directories
9+
# (https://github.com/dependabot/dependabot-core/issues/4364)
10+
# however, we can ignore all dependencies in the data-files
11+
# directory which is equivalent if a bit slower
12+
- package-ecosystem: "pip"
13+
directory: "/pyperformance/data-files"
14+
schedule:
15+
interval: "monthly"
16+
ignore:
17+
- dependency-name: "*"

0 commit comments

Comments
 (0)