Skip to content

Commit

Permalink
Simplify renovate config & shortern commits (#179)
Browse files Browse the repository at this point in the history
Don't you hate it when PR(/commit) messages are over 80 chars and don't
render well on GitHub? Well have I got a solution for you!
  • Loading branch information
paddyroddy authored Oct 6, 2023
1 parent c17a58f commit a4f002a
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":disableDependencyDashboard", ":enablePreCommit"],
"extends": [
"config:base",
":automergeBranch",
":automergeDigest",
":automergeMinor",
":automergePatch",
":disableDependencyDashboard",
":enablePreCommit"
],
"commitMessageAction": "Renovate:",
"packageRules": [
{
"description": "Automatically merge minor and patch-level updates",
"automerge": true,
"automergeType": "branch",
"matchUpdateTypes": ["digest", "minor", "patch"],
"platformAutomerge": true
"commitMessageTopic": "{{depName}}",
"matchManagers": ["github-actions", "pre-commit"]
}
]
}

0 comments on commit a4f002a

Please sign in to comment.