-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdependabot.yml
38 lines (34 loc) · 1.01 KB
/
dependabot.yml
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
29
30
31
32
33
34
35
36
37
38
# Please see the documentation for all configuration options:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "monthly"
commit-message:
prefix: "Dockerfile"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "monthly"
groups:
minor-and-patch:
update-types:
- "minor"
- "patch"
exclude-patterns:
- "pydantic*"
# pydantic is a known violator of version updates where they don't release the core backend
# with the API library at the same time which holds up other legitimate updates, so group
# pydantic deps together
pydantic:
update-types:
- "minor"
- "patch"
patterns:
- "pydantic*"