Skip to content

Commit 98ae75d

Browse files
Copilotfranz1981
andcommitted
Add Dependabot configuration for Maven and GitHub Actions
Co-authored-by: franz1981 <13125299+franz1981@users.noreply.github.com>
1 parent 938d9de commit 98ae75d

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

.github/dependabot.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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"

0 commit comments

Comments
 (0)