Skip to content

Commit 3c0e515

Browse files
authored
Create dependabot.yml (#57)
1 parent f34d41a commit 3c0e515

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/dependabot.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
# yamllint disable rule:truthy
3+
version: 2
4+
5+
updates:
6+
# Maintain dependencies for GitHub Actions
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
day: "monday"
12+
time: "09:00"
13+
target-branch: main
14+
labels:
15+
- "changes/patch"
16+
groups:
17+
all:
18+
patterns:
19+
- "*"
20+
21+
# Group all pip updates except infrahub-sdk
22+
- package-ecosystem: "pip"
23+
directory: "/"
24+
schedule:
25+
interval: "daily"
26+
time: "12:00"
27+
target-branch: main
28+
labels:
29+
- "changes/patch"
30+
groups:
31+
all:
32+
patterns:
33+
- "^(?!infrahub-sdk$).*" # Regex to exclude infrahub-sdk
34+
infrahub-sdk:
35+
patterns:
36+
- "infrahub-sdk"

0 commit comments

Comments
 (0)