Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@

{
matchManagers: ["maven", "gradle"],
matchPackagePrefixes: [
"org.springframework",
"org.springframework.security"
matchPackageNames: [
"org.springframework{/,}**",
"org.springframework.security{/,}**"
],
groupName: "spring ecosystem",
addLabels: ["renovate-type-spring"],
Expand Down Expand Up @@ -305,7 +305,7 @@
{
matchManagers: ["maven", "gradle"],
groupName: "{{groupId}} packages",
matchPackagePatterns: [".*"],
matchPackageNames: ["/.*/"],
}
],
}
2 changes: 1 addition & 1 deletion .github/workflows/common-validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
docker run --rm \
-v "$GITHUB_WORKSPACE:/repo" \
"renovate/renovate:$VERSION" \
renovate-config-validator "/repo/$CONFIG_PATH"
renovate-config-validator --strict "/repo/$CONFIG_PATH"
5 changes: 5 additions & 0 deletions .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ on:
push:
paths:
- ".github/renovate.json5"
# so a change to the check itself is exercised by the check
- ".github/workflows/validate-renovate.yml"
- ".github/workflows/common-validate-renovate.yml"
pull_request:
paths:
- ".github/renovate.json5"
- ".github/workflows/validate-renovate.yml"
- ".github/workflows/common-validate-renovate.yml"

permissions: {}

Expand Down
Loading