Skip to content

Commit 67d8716

Browse files
committed
ENH: Add dependabot config
This should be the final part of our new CI setup, handling updates to our pinned dependencies.
1 parent b071e5c commit 67d8716

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.github/dependabot.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: pip
5+
directory: "/ci"
6+
schedule:
7+
interval: daily
8+
time: "23:00"
9+
timezone: "America/Denver"
10+
11+
allow:
12+
- dependency-type: all
13+
14+
open-pull-requests-limit: 10
15+
pull-request-branch-name:
16+
separator: "-"
17+
labels:
18+
- "Type: Maintenance"
19+
commit-message:
20+
prefix: "MNT:"
21+
include: "scope"
22+
23+
- package-ecosystem: "github-actions"
24+
# Workflow files stored in the
25+
# default location of `.github/workflows`
26+
directory: "/"
27+
schedule:
28+
interval: "daily"
29+
30+
allow:
31+
- dependency-type: all
32+
33+
open-pull-requests-limit: 10
34+
pull-request-branch-name:
35+
separator: "-"
36+
labels:
37+
- "Type: Maintenance"
38+
commit-message:
39+
prefix: "MNT:"
40+
include: "scope"

0 commit comments

Comments
 (0)