-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
21 lines (21 loc) · 755 Bytes
/
renovate.json
File metadata and controls
21 lines (21 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"postUpdateOptions": ["gomodTidy"],
"labels": ["dependencies"],
"commitMessage": "chore(deps): {{depName}} ^ {{newVersion}}",
"prTitle": "chore(deps): {{depName}} ^ {{newVersion}}",
"prBodyTemplate": "## What?\n\n{{{table}}}{{{notes}}}{{{changelogs}}}\n\n## Why?\n\nAutomated dependency update via Renovate.\n\n{{{configDescription}}}\n\n{{{warnings}}}\n\n---\n\n{{{controls}}}\n\n{{{footer}}}",
"packageRules": [
{
"matchManagers": ["gomod"],
"matchDepNames": ["go"],
"rangeStrategy": "bump"
},
{
"matchManagers": ["github-actions"],
"matchDepNames": ["go"],
"groupName": "go"
}
]
}