-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdependabot.yml.jinja
More file actions
28 lines (27 loc) · 894 Bytes
/
dependabot.yml.jinja
File metadata and controls
28 lines (27 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% raw %}version: 2
updates:
- package-ecosystem: "uv"
directories:
- "/"
schedule:
interval: "weekly"
day: "sunday"
time: "16:00"
open-pull-requests-limit: 5
ignore:
- dependency-name: "boto3" # boto3 gets patch updates way too frequently and they're usually not important
update-types:
- "version-update:semver-patch"
- dependency-name: "sphinx*" # read-the-docs uses specific versions of sphinx, so we generally want to stay tightly pinned unless there's a major version change
update-types:
- "version-update:semver-minor"
- "version-update:semver-patch"
groups:
prod-dependencies:
dependency-type: "production"
update-types:
- "minor"
dev-dependencies:
dependency-type: "development"
update-types:
- "minor"{% endraw %}