Skip to content

Commit 95db3dc

Browse files
authored
🤖 Add Dependabot configuration (#10)
1 parent d72bef9 commit 95db3dc

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
version: 2
2+
3+
updates:
4+
# Docker base image updates
5+
- package-ecosystem: "docker"
6+
directory: "/"
7+
schedule:
8+
interval: "daily"
9+
open-pull-requests-limit: 10
10+
labels:
11+
- "dependencies"
12+
commit-message:
13+
prefix: "⬆️ [ Docker ] "
14+
include: "scope"
15+
# Rebase strategy: auto-rebase for cleaner history
16+
rebase-strategy: "auto"
17+
# Group minor and patch updates together
18+
groups:
19+
docker-minor-patch:
20+
patterns:
21+
- "*"
22+
update-types:
23+
- "minor"
24+
- "patch"
25+
26+
# GitHub Actions updates
27+
- package-ecosystem: "github-actions"
28+
directory: "/"
29+
schedule:
30+
interval: "daily"
31+
open-pull-requests-limit: 5
32+
labels:
33+
- "dependencies"
34+
commit-message:
35+
prefix: "⬆️ [ GitHub Actions ] "
36+
include: "scope"
37+
rebase-strategy: "auto"
38+
groups:
39+
github-actions:
40+
patterns:
41+
- "*"
42+
update-types:
43+
- "minor"
44+
- "patch"

0 commit comments

Comments
 (0)