-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
35 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"semanticCommits": "enabled", | ||
"configMigration": true, | ||
"packageRules": [ | ||
// Goals: | ||
// - Keep version reqs low, ignoring compatible normal/build dependencies | ||
// - Take advantage of latest dev-dependencies | ||
// - Help keep versions down by always using latest breaking change | ||
// - Rollup safe upgrades to reduce CI runner load | ||
// - Have lockfile and manifest in-sync | ||
{ | ||
"matchManagers": ["cargo"], | ||
"matchDepTypes": ["dev-dependencies"], | ||
"matchUpdateTypes": ["patch"], | ||
"automerge": true, | ||
"groupName": "dev", | ||
}, | ||
{ | ||
"matchManagers": ["cargo"], | ||
"matchUpdateTypes": ["major"], | ||
}, | ||
{ | ||
"matchManagers": ["cargo"], | ||
"matchUpdateTypes": ["minor"], | ||
"enabled": false, | ||
}, | ||
{ | ||
"matchManagers": ["cargo"], | ||
"matchDepTypes": ["build-dependencies", "dependencies"], | ||
"matchUpdateTypes": ["patch"], | ||
"enabled": false, | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
style="conventional" | ||
ignore_author_re="dependabot" | ||
ignore_author_re="(dependabot|renovate)" | ||
merge_commit = false |