Merge pull request 'chore(config): migrate Renovate config' (#32) from renovate/migrate-config into main
Reviewed-on: #32
This commit is contained in:
commit
38da6da683
1 changed files with 33 additions and 9 deletions
|
|
@ -1,12 +1,18 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": ["config:base"],
|
"extends": [
|
||||||
|
"config:recommended"
|
||||||
|
],
|
||||||
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
|
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
|
||||||
"branchPrefix": "renovate/",
|
"branchPrefix": "renovate/",
|
||||||
"semanticCommits": "enabled",
|
"semanticCommits": "enabled",
|
||||||
"dependencyDashboard": true,
|
"dependencyDashboard": true,
|
||||||
"labels": ["dependencies"],
|
"labels": [
|
||||||
"schedule": ["at any time"],
|
"dependencies"
|
||||||
|
],
|
||||||
|
"schedule": [
|
||||||
|
"at any time"
|
||||||
|
],
|
||||||
"timezone": "UTC",
|
"timezone": "UTC",
|
||||||
"prConcurrentLimit": 10,
|
"prConcurrentLimit": 10,
|
||||||
"prCreation": "immediate",
|
"prCreation": "immediate",
|
||||||
|
|
@ -17,22 +23,40 @@
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"description": "Elixir dependencies",
|
"description": "Elixir dependencies",
|
||||||
"matchManagers": ["mix"],
|
"matchManagers": [
|
||||||
"matchUpdateTypes": ["major", "minor", "patch"],
|
"mix"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"major",
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
],
|
||||||
"groupName": null,
|
"groupName": null,
|
||||||
"commitMessagePrefix": "chore(deps):"
|
"commitMessagePrefix": "chore(deps):"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "Docker dependencies",
|
"description": "Docker dependencies",
|
||||||
"matchManagers": ["dockerfile"],
|
"matchManagers": [
|
||||||
"matchUpdateTypes": ["major", "minor", "patch"],
|
"dockerfile"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"major",
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
],
|
||||||
"groupName": null,
|
"groupName": null,
|
||||||
"commitMessagePrefix": "chore(deps):"
|
"commitMessagePrefix": "chore(deps):"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "GitHub Actions",
|
"description": "GitHub Actions",
|
||||||
"matchManagers": ["github-actions"],
|
"matchManagers": [
|
||||||
"matchUpdateTypes": ["major", "minor", "patch"],
|
"github-actions"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"major",
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
],
|
||||||
"groupName": null,
|
"groupName": null,
|
||||||
"commitMessagePrefix": "chore(deps):"
|
"commitMessagePrefix": "chore(deps):"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue