Skip to content
Merged
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
14 changes: 12 additions & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,24 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
"helpers:pinGitHubActionDigestsToSemver"
"helpers:pinGitHubActionDigestsToSemver",

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just sync'ing with json5 formatting practice in other repos

],
"packageRules": [
{
// this is to reduce the number of renovate PRs by consolidating them into a weekly batch
"matchManagers": ["github-actions"],
"extends": ["schedule:weekly"],
"groupName": "github actions"
}
},
{
// junit 6+ requires Java 17+
matchPackageNames: [
'org.junit:**',
],
matchUpdateTypes: [
'major',
],
enabled: false,
},
]
}