Skip to content

Commit 9c8e28f

Browse files
committed
chore: Switch to renovate
1 parent 81ea0bc commit 9c8e28f

File tree

3 files changed

+35
-9
lines changed

3 files changed

+35
-9
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/renovate.json5

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"semanticCommits": "enabled",
3+
"configMigration": true,
4+
"packageRules": [
5+
// Goals:
6+
// - Keep version reqs low, ignoring compatible normal/build dependencies
7+
// - Take advantage of latest dev-dependencies
8+
// - Help keep versions down by always using latest breaking change
9+
// - Rollup safe upgrades to reduce CI runner load
10+
// - Have lockfile and manifest in-sync
11+
{
12+
"matchManagers": ["cargo"],
13+
"matchDepTypes": ["dev-dependencies"],
14+
"matchUpdateTypes": ["patch"],
15+
"automerge": true,
16+
"groupName": "dev",
17+
},
18+
{
19+
"matchManagers": ["cargo"],
20+
"matchUpdateTypes": ["major"],
21+
},
22+
{
23+
"matchManagers": ["cargo"],
24+
"matchUpdateTypes": ["minor"],
25+
"enabled": false,
26+
},
27+
{
28+
"matchManagers": ["cargo"],
29+
"matchDepTypes": ["build-dependencies", "dependencies"],
30+
"matchUpdateTypes": ["patch"],
31+
"enabled": false,
32+
},
33+
],
34+
}

committed.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
style="conventional"
2-
ignore_author_re="dependabot"
2+
ignore_author_re="(dependabot|renovate)"
33
merge_commit = false

0 commit comments

Comments
 (0)