-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(renovate): update config to handle conventional commit titles
- Loading branch information
1 parent
a372df0
commit 639223e
Showing
1 changed file
with
29 additions
and
10 deletions.
There are no files selected for viewing
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,25 +1,44 @@ | ||
{ | ||
"extends": ["config:base"], | ||
"ignorePaths": ["**/adr/**", "**/docs/**", "**/test/**"], | ||
"extends": [ | ||
"config:base", | ||
":semanticCommits", | ||
":semanticCommitTypeAll(chore)" | ||
], | ||
"ignorePaths": [ | ||
"**/adr/**", | ||
"**/docs/**", | ||
"**/test/**" | ||
], | ||
"timezone": "America/New_York", | ||
"schedule": ["after 12pm and before 11am every weekday"], | ||
"schedule": [ | ||
"after 12pm and before 11am every weekday" | ||
], | ||
"dependencyDashboardTitle": "Renovate Dashboard 🤖", | ||
"packageRules": [ | ||
{ | ||
"matchUpdateTypes": ["patch", "pin", "digest"], | ||
"matchUpdateTypes": [ | ||
"patch", | ||
"pin", | ||
"digest" | ||
], | ||
"automerge": true, | ||
"automergeType": "pr" | ||
}, | ||
{ | ||
"matchDepTypes": ["devDependencies"], | ||
"matchDepTypes": [ | ||
"devDependencies" | ||
], | ||
"automerge": true, | ||
"automergeType": "pr" | ||
} | ||
], | ||
"labels": ["dependencies"], | ||
"labels": [ | ||
"dependencies" | ||
], | ||
"platformAutomerge": true, | ||
"platformCommit": true, | ||
"postUpdateOptions": ["gomodTidy"], | ||
"commitBodyTable": true, | ||
"commitMessagePrefix": "deps" | ||
} | ||
"postUpdateOptions": [ | ||
"gomodTidy" | ||
], | ||
"commitBodyTable": true | ||
} |