0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-02 19:43:00 +00:00
terraform-provider-proxmox/.github/renovate.json5
Pavel Boldyrev 14836b6c50
misc: update renovate config
Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
2024-01-26 22:24:40 -05:00

51 lines
1.2 KiB
Plaintext

{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"github>bpg/renovate-config",
"github>bpg/renovate-config:automerge-github-actions",
":semanticCommitTypeAll(chore)",
],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths",
],
"ignorePaths": ["howtos/**"],
"rebaseWhen": "behind-base-branch",
"packageRules": [
{
"matchPackagePatterns": [
"*",
],
"semanticCommitScope": "deps",
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})",
},
{
"matchFileNames": [
"tools/go.mod",
"tools/go.sum",
],
"commitMessageExtra": "({{currentVersion}} → {{newVersion}}) in /tools",
"groupName": ["tools"],
},
{
"matchFileNames": [
"examples/**",
"example/**",
"docs/**",
],
"semanticCommitScope": "docs",
"automerge": true,
"automergeType": "branch",
"matchUpdateTypes": ["minor", "patch"],
},
{
"matchManagers": ["github-actions"],
"semanticCommitScope": "ci",
},
{
"matchUpdateTypes": ["major"],
"commitMessagePrefix": "{{semanticCommitType}}({{semanticCommitScope}}):",
},
]
}