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
10 changes: 9 additions & 1 deletion renovate-config.json5
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"semanticCommitScope": "deps",
"semanticCommitType": "chore",
"semanticCommits": "enabled",
"separateMultipleMajor": true, // create separate PRs for major updates
"timezone": "America/New_York",
"updatePinnedDependencies": true,
// beta features
Expand All @@ -36,6 +35,11 @@
},
// group/package rules
"packageRules": [
// Create separate PRs for each major version unless the dependency is already grouped.
{
"matchJsonata": ["groupName = null or $not($exists(groupName))"],
"separateMultipleMajor": true,
},
// Keep Debian Docker tags on plain codenames or major versions, not dated rebuild tags.
{
"matchDatasources": ["docker"],
Expand All @@ -56,6 +60,7 @@
"actions/**",
"github/**"
],
"separateMultipleMajor": false,
},
// Group docker actions
{
Expand All @@ -67,6 +72,7 @@
"matchPackageNames": [
"docker/**",
],
"separateMultipleMajor": false,
},
// Group dev dependencies
{
Expand All @@ -85,6 +91,7 @@
"matchPackageNames": [
"pytest*",
],
"separateMultipleMajor": false,
},
// combine oddstr13/jellyfin-plugin-repository-manager and pypi jprm into a single group
{
Expand All @@ -97,6 +104,7 @@
"oddstr13/jellyfin-plugin-repository-manager",
"jprm",
],
"separateMultipleMajor": false,
},
],
"customManagers": [
Expand Down