-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
dependabot.yml
43 lines (39 loc) · 955 Bytes
/
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
39
40
41
42
43
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
labels:
- dependencies
schedule:
interval: "daily"
# Maintain dependencies for Python
- package-ecosystem: "pip"
directory: "/"
allow:
- dependency-type: "all"
labels:
- dependencies
schedule:
interval: "daily"
open-pull-requests-limit: 10
# Maintain dependencies for GitHub Actions aiohttp backport
- package-ecosystem: "github-actions"
directory: "/"
labels:
- dependencies
target-branch: "3.11"
schedule:
interval: "daily"
open-pull-requests-limit: 10
# Maintain dependencies for Python aiohttp backport
- package-ecosystem: "pip"
directory: "/"
allow:
- dependency-type: "all"
labels:
- dependencies
target-branch: "3.11"
schedule:
interval: "daily"
open-pull-requests-limit: 10