mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
- Update Go version from 1.23 to 1.24 in go.mod and README - Migrate documentation generation from tools/ to main.go - Update Makefile to use go generate in main.go for docs - Remove tools/ directory and related configuration - Update GitHub Actions and Renovate configuration - Simplify documentation generation process Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
57 lines
1.1 KiB
Plaintext
57 lines
1.1 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: [
|
|
{
|
|
semanticCommitScope: 'deps',
|
|
matchPackageNames: [
|
|
'*',
|
|
],
|
|
},
|
|
{
|
|
groupName: 'github.com/hashicorp/terraform-plugin-*',
|
|
matchPackageNames: [
|
|
'github.com/hashicorp/terraform-plugin-{/,}**',
|
|
],
|
|
},
|
|
{
|
|
matchFileNames: [
|
|
'examples/**',
|
|
'example/**',
|
|
'docs/**',
|
|
],
|
|
semanticCommitScope: 'docs',
|
|
automerge: true,
|
|
automergeType: 'branch',
|
|
matchUpdateTypes: [
|
|
'minor',
|
|
'patch',
|
|
],
|
|
},
|
|
{
|
|
matchManagers: [
|
|
'github-actions',
|
|
],
|
|
semanticCommitScope: 'ci',
|
|
},
|
|
{
|
|
matchUpdateTypes: [
|
|
'major',
|
|
],
|
|
commitMessagePrefix: '{{semanticCommitType}}({{semanticCommitScope}}):',
|
|
},
|
|
],
|
|
}
|