Skip to content

Commit fccf226

Browse files
committed
fix: invalid dependabot configuration for update types in groups
The `applies-to` field in the `all-dependencies` group expects a string and not an array of strings. Grouping both security and version updates is not supported by Dependabot. Split the two types of updates into their own distinct group. Signed-off-by: Ivin Joel Abraham <ivinjabraham@gmail.com>
1 parent 021e423 commit fccf226

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ updates:
77
open-pull-requests-limit: 1
88
target-branch: "develop"
99
groups:
10-
all-dependencies:
11-
applies-to: [version-updates, security-updates]
10+
version-updates:
11+
applies-to: "version-updates"
12+
patterns:
13+
- "*"
14+
15+
security-updates:
16+
applies-to: "security-updates"
1217
patterns:
1318
- "*"

0 commit comments

Comments
 (0)