File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ # Dependabot configuration for automatic dependency updates
2+ # See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
3+
4+ version : 2
5+ updates :
6+ # Enable version updates for Maven dependencies
7+ - package-ecosystem : " maven"
8+ directory : " /"
9+ schedule :
10+ interval : " weekly"
11+ day : " monday"
12+ time : " 09:00"
13+ open-pull-requests-limit : 10
14+ labels :
15+ - " dependencies"
16+ - " maven"
17+ commit-message :
18+ prefix : " deps"
19+ include : " scope"
20+ reviewers :
21+ - " franz1981"
22+ # Group minor and patch updates together
23+ groups :
24+ maven-minor-patch :
25+ patterns :
26+ - " *"
27+ update-types :
28+ - " minor"
29+ - " patch"
30+
31+ # Enable version updates for GitHub Actions
32+ - package-ecosystem : " github-actions"
33+ directory : " /"
34+ schedule :
35+ interval : " weekly"
36+ day : " monday"
37+ time : " 09:00"
38+ open-pull-requests-limit : 5
39+ labels :
40+ - " dependencies"
41+ - " github-actions"
42+ commit-message :
43+ prefix : " ci"
44+ include : " scope"
45+ reviewers :
46+ - " franz1981"
You can’t perform that action at this time.
0 commit comments