Skip to content

Commit 2741f62

Browse files
authored
Merge pull request #1286 from smallrye/ci/dependabot-3x-and-grouping
fix(ci): dependabot to target main and 3.x
2 parents 93563bb + 563291f commit 2741f62

File tree

1 file changed

+51
-9
lines changed

1 file changed

+51
-9
lines changed

.github/dependabot.yml

Lines changed: 51 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,53 @@
11
version: 2
22
updates:
3-
- package-ecosystem: maven
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
open-pull-requests-limit: 10
8-
- package-ecosystem: github-actions
9-
directory: "/"
10-
schedule:
11-
interval: weekly
3+
# main branch
4+
- package-ecosystem: maven
5+
directory: "/"
6+
target-branch: main
7+
schedule:
8+
interval: daily
9+
open-pull-requests-limit: 10
10+
commit-message:
11+
prefix: "build(deps)"
12+
groups:
13+
minor-and-patch:
14+
update-types:
15+
- minor
16+
- patch
17+
- package-ecosystem: github-actions
18+
directory: "/"
19+
target-branch: main
20+
schedule:
21+
interval: weekly
22+
commit-message:
23+
prefix: "build(deps)"
24+
groups:
25+
actions:
26+
patterns:
27+
- "*"
28+
29+
# 3.x branch
30+
- package-ecosystem: maven
31+
directory: "/"
32+
target-branch: "3.x"
33+
schedule:
34+
interval: daily
35+
open-pull-requests-limit: 10
36+
commit-message:
37+
prefix: "build(deps)"
38+
groups:
39+
minor-and-patch:
40+
update-types:
41+
- minor
42+
- patch
43+
- package-ecosystem: github-actions
44+
directory: "/"
45+
target-branch: "3.x"
46+
schedule:
47+
interval: weekly
48+
commit-message:
49+
prefix: "build(deps)"
50+
groups:
51+
actions:
52+
patterns:
53+
- "*"

0 commit comments

Comments
 (0)