-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdependabot.yml
More file actions
37 lines (36 loc) · 848 Bytes
/
dependabot.yml
File metadata and controls
37 lines (36 loc) · 848 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
29
30
31
32
33
34
35
36
37
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: pip
directory: /
target-branch: main
schedule:
interval: weekly
day: monday
time: "06:00"
timezone: "UTC"
open-pull-requests-limit: 15
rebase-strategy: auto
commit-message:
prefix: "deps(pip)"
labels:
- dependencies
- python
groups:
pip-dependencies:
patterns:
- "*"
- package-ecosystem: github-actions
directory: /
target-branch: main
schedule:
interval: weekly
day: monday
time: "06:30"
timezone: "UTC"
rebase-strategy: auto
commit-message:
prefix: "deps(actions)"
labels:
- dependencies
- github-actions