0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 18:42:58 +00:00
terraform-provider-proxmox/.github/renovate.json5
Pavel Boldyrev 8ed271b551
chore(build): update Go version and linter /documentation workflows (#1789)
- 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>
2025-02-23 21:20:25 -05:00

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}}):',
},
],
}