Skip to content

Commit

Permalink
fix: update renovate configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Pettor committed Jun 27, 2023
1 parent 405f554 commit 05c355c
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"labels": ["dependency", "bot"]
"extends": ["config:base", ":semanticCommits"],
"labels": ["dependency", "bot"],
"schedule": ["every weekend"],
"separateMajorMinor": false,
"packageRules": [
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "dev dependencies",
"semanticCommitType": "chore"
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "dependencies",
"semanticCommitType": "fix"
}
]
}

0 comments on commit 05c355c

Please sign in to comment.