Skip to content

Commit

Permalink
Fix junit group config for Dependabot
Browse files Browse the repository at this point in the history
Looks like Dependabot applies the `pattern` to the `groupId` and not the
`artifactId` which explains why the feature didn't work for us so far.
I tried this out on a small demo project and successfully managed to
get Dependabot to create a group update PR:
FlorianHockmann/dependabot-grouped-update-test#6

Signed-off-by: Florian Hockmann <[email protected]>
  • Loading branch information
FlorianHockmann committed Nov 22, 2023
1 parent 8c31747 commit 24ca8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ updates:
groups:
junit:
patterns:
- "junit*"
- "org.junit.*"
labels:
- "backport/v1.0"
- "dependencies"
Expand Down

0 comments on commit 24ca8b0

Please sign in to comment.