Skip to content

Commit caeb5e5

Browse files
committed
add dependabot
1 parent 093ab19 commit caeb5e5

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/dependabot.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
version: 2
3+
updates:
4+
# Enable version updates for python
5+
- package-ecosystem: "pip"
6+
# Look for `requirements.txt` file in the `dev-utils` directory
7+
directory: "/dev-utils/"
8+
# Check for updates once a week
9+
schedule:
10+
interval: "weekly"
11+
day: "sunday"
12+
time: "22:00"
13+
reviewers:
14+
- "elastic/apm-agent-python"
15+
ignore:
16+
- dependency-name: "urllib3" # ignore until lambda runtimes use OpenSSL 1.1.1+
17+
versions: [">=2.0.0"]
18+
19+
# GitHub actions
20+
- package-ecosystem: "github-actions"
21+
directories:
22+
- '/'
23+
- '/.github/actions/*'
24+
reviewers:
25+
- "elastic/observablt-ci"
26+
schedule:
27+
interval: "weekly"
28+
day: "sunday"
29+
time: "22:00"
30+
groups:
31+
github-actions:
32+
patterns:
33+
- "*"
34+
35+
- package-ecosystem: "docker"
36+
directories:
37+
- '/'
38+
reviewers:
39+
- "elastic/apm-agent-python"
40+
registries: "*"
41+
schedule:
42+
interval: "daily"

0 commit comments

Comments
 (0)