mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-02 19:43:00 +00:00
51 lines
1.2 KiB
Plaintext
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}}):",
|
|
},
|
|
]
|
|
}
|