Skip to content

Commit

Permalink
New renovate config
Browse files Browse the repository at this point in the history
  • Loading branch information
confused-Techie committed Dec 15, 2023
1 parent 2ecd97f commit 96419a3
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
{
"schedule": ["every weekend"],
"labels": ["dependencies"],
"extends": [ "config:base", ":dependencyDashboardApproval" ],
"constraints": {
"node": "< 16"
},
"labels": [ "dependencies" ],
"separateMajorMinor": "false",
"ignorePaths": [
"native-module/",
"spec/fixtures/",
"templates/"
],
"packageRules": [
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "devDependencies",
"semanticCommitType": "chore",
"automerge": true
"matchDepTypes": [ "devDependencies" ],
"description": "Dev Dependencies",
"groupName": "DevDependencies",
"matchPaths": [ "package.json" ]
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "dependencies",
"semanticCommitType": "fix"
"matchDepTypes": [ "dependencies" ],
"description": "Dependencies",
"groupName": "Dependencies",
"matchPaths": [ "package.json" ]
}
]
}

0 comments on commit 96419a3

Please sign in to comment.