Add Mend Renovate bot (#1077)

* Add Mend Renovate bot

* Add extends
This commit is contained in:
Bas Nijholt 2024-12-05 11:14:08 -08:00 committed by GitHub
commit 8899d0f5f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

38
.github/renovate.json vendored Normal file
View file

@ -0,0 +1,38 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"rebaseWhen": "behind-base-branch",
"dependencyDashboard": true,
"labels": [
"dependencies",
"no-stale"
],
"commitMessagePrefix": "⬆️",
"commitMessageTopic": "{{depName}}",
"prBodyDefinitions": {
"Release": "yes"
},
"packageRules": [
{
"matchManagers": [
"github-actions"
],
"addLabels": [
"github_actions"
],
"rangeStrategy": "pin"
},
{
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
}
],
"extends": [
"config:recommended"
]
}