Skip to content

Commit

Permalink
Make default config only work for certain managers, as before (#2)
Browse files Browse the repository at this point in the history
This was the config in `UCL-ARC/renovate-config` and I accidentally
replaced it with my own. Was bound to make a mistake somewhere.

Essentially, for now, only do automerging for
`pre-commit`/`github-actions`.
  • Loading branch information
paddyroddy authored Oct 11, 2023
1 parent 2e27644 commit 85266cb
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions renovate/default-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,22 @@
"extends": [
"config:base",
"schedule:weekdays",
":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"],
"matchManagers": ["github-actions", "pre-commit"]
},
{
"description": "Shorten commit titles",
"commitMessageTopic": "{{depName}}",
"matchManagers": ["bundler", "github-actions", "pre-commit"]
"matchManagers": ["github-actions", "pre-commit"]
}
]
}

0 comments on commit 85266cb

Please sign in to comment.