Skip to content

Commit dd8c4a3

Browse files
authored
chore: add a configuration for the renovate bot (#6)
1 parent 5139483 commit dd8c4a3

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

renovate.json

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4+
":semanticCommits",
5+
":disableDependencyDashboard",
46
"config:recommended"
5-
]
6-
}
7+
],
8+
"packageRules": [
9+
{
10+
"matchUpdateTypes": ["major"],
11+
"labels": ["major"],
12+
"semanticCommitScope": "deps"
13+
},
14+
{
15+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
16+
"automerge": true,
17+
"automergeType": "pr",
18+
"automergeStrategy": "auto",
19+
"semanticCommitScope": "deps",
20+
"labels": ["minor-patch"]
21+
},
22+
{
23+
"matchManagers": ["github-actions"],
24+
"labels": ["github-actions", "ci"]
25+
}
26+
],
27+
"lockFileMaintenance": {
28+
"enabled": true,
29+
"automerge": true
30+
}
31+
}

0 commit comments

Comments
 (0)