Skip to content
Open
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
28 changes: 14 additions & 14 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,52 +5,52 @@
"github>containerbase/.github//merge-queue.json"
],
"ignorePaths": ["**/node_modules/**", "test/*/test/**"],
"enabledManagers": ["npm", "dockerfile", "github-actions", "regex"],
"enabledManagers": ["npm", "dockerfile", "github-actions", "custom.regex"],
"separateMultipleMajor": false,
"separateMajorMinor": true,
"packageRules": [
{
"description": "Don't hold back any PRs for approval",
"matchPackagePatterns": ["*"],
"dependencyDashboardApproval": false
"dependencyDashboardApproval": false,
"matchPackageNames": ["*"]
},
{
"description": "Hold back npm major updates in root package.json",
"matchUpdateTypes": ["major"],
"matchFiles": ["package.json"],
"matchFileNames": ["package.json"],
"dependencyDashboardApproval": true
},
{
"description": "Disable all managers in test/ by default",
"matchPaths": ["test/**"],
"matchFileNames": ["test/**"],
"enabled": false
},
{
"description": "Enable the regex manager only for test/",
"matchPaths": ["test/**"],
"matchManagers": ["regex"],
"matchFileNames": ["test/**"],
"matchManagers": ["custom.regex"],
"enabled": true
},
{
"description": "Disable pin digest for test/",
"matchPaths": ["test/**"],
"matchFileNames": ["test/**"],
"matchUpdateTypes": ["pinDigest"],
"enabled": false
},
{
"description": "Separate patch updates in test/ so that we can automerge them",
"matchPaths": ["test/**"],
"matchFileNames": ["test/**"],
"separateMinorPatch": true
},
{
"description": "Don't automerge test minor/major because we might want to retain old versions in tests too",
"matchPaths": ["test/**"],
"matchFileNames": ["test/**"],
"matchUpdateTypes": ["minor", "major"],
"automerge": false
},
{
"description": "Automerge test selected minor updates in tests",
"matchPaths": ["test/**"],
"matchFileNames": ["test/**"],
"matchPackageNames": [
"bundler",
"docker",
Expand All @@ -75,7 +75,7 @@
"description": "Trigger fix release for git updates",
"matchPackageNames": ["git"],
"semanticCommitType": "fix",
"stabilityDays": 5
"minimumReleaseAge": "5 days"
},
{
"description": "Trigger fix release for ubuntu digest updates",
Expand All @@ -97,13 +97,13 @@
},
{
"description": "Use `test` semantic commit scope and additionalBranchPrefix for test/",
"matchPaths": ["test/**"],
"matchFileNames": ["test/**"],
"additionalBranchPrefix": "test-",
"semanticCommitType": "test"
},
{
"description": "Use `test-major-` additionalBranchPrefix for test/ major updates",
"matchPaths": ["test/**"],
"matchFileNames": ["test/**"],
"matchUpdateTypes": ["major"],
"additionalBranchPrefix": "test-major-"
},
Expand Down
Loading