Skip to content

Commit

Permalink
👷 improve renovate's behaviors
Browse files Browse the repository at this point in the history
  • Loading branch information
be-next authored Dec 1, 2024
1 parent 9461ddb commit 543750a
Showing 1 changed file with 53 additions and 4 deletions.
57 changes: 53 additions & 4 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
{
"extends": [
"config:best-practices"
]
}
"extends": [
"config:best-practices",
":semanticCommits",
":automergePatch",
":automergeMinor",
":maintainLockFilesWeekly"
],
"prConcurrentLimit": 20,
"commitMessagePrefix": "⬆️",
"commitMessageExtra": "🔀",
"commitMessageAction": "Update",
"commitBody": "Signed-off-by: Renovate Bot <[email protected]>",
"labels": [
"dependencies"
],
"packageRules": [
{
"matchUpdateTypes": [
"major"
],
"labels": [
"dependencies",
"breaking"
],
"commitMessagePrefix": "💥"
},
{
"matchUpdateTypes": [
"patch"
],
"labels": [
"dependencies",
"patch"
],
"commitMessagePrefix": "🩹"
},
{
"matchDepTypes": [
"devDependencies"
],
"labels": [
"dev-dependencies"
],
"commitMessagePrefix": "🔧"
}
],
"schedule": [
"every weekend"
],
"automergeType": "pr",
"automergeStrategy": "squash",
"platformCommit": "enabled"
}

0 comments on commit 543750a

Please sign in to comment.