Skip to content

Commit be29a3c

Browse files
authored
reduce the number of changes in individual dependabot pull request. (opendcs#955)
## Problem Description dependabot is lumping too many changes together, and the resulting PR's are failing as a result. ## Solution configure dependabot to make major, minor, patch, and security changes separately.
1 parent a0b978d commit be29a3c

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,26 @@ updates:
55
schedule:
66
interval: "daily"
77
groups:
8-
alldependencies:
8+
dependencies-major:
9+
patterns:
10+
- "*"
11+
update-types:
12+
- "major"
13+
dependencies-minor:
914
patterns:
1015
- "*"
1116
update-types:
1217
- "minor"
18+
dependencies-patch:
19+
patterns:
20+
- "*"
21+
update-types:
1322
- "patch"
23+
dependencies-security:
24+
patterns:
25+
- "*"
26+
update-types:
27+
- "security"
1428
reviewers:
1529
- "@opendcs/opendcs-core-devs"
1630
- package-ecosystem: "github-actions"

0 commit comments

Comments
 (0)