-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependabot.yaml
More file actions
46 lines (45 loc) · 1 KB
/
dependabot.yaml
File metadata and controls
46 lines (45 loc) · 1 KB
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
39
40
41
42
43
44
45
46
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
# Python dependencies (uv/pip)
- package-ecosystem: pip
directory: /
schedule:
interval: weekly
day: monday
time: "09:00"
timezone: Europe/London
open-pull-requests-limit: 10
commit-message:
prefix: "chore(deps)"
labels:
- dependencies
- python
groups:
python-minor-patch:
patterns:
- "*"
update-types:
- minor
- patch
# GitHub Actions
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: monday
time: "09:00"
timezone: Europe/London
open-pull-requests-limit: 5
commit-message:
prefix: "chore(deps)"
labels:
- dependencies
- github-actions
groups:
actions:
patterns:
- "*"
update-types:
- minor
- patch