0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-10-26 04:27:05 +00:00
renovatebot_renovate/renovate.json
2024-09-21 10:17:26 +00:00

76 lines
2.2 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>renovatebot/.github"],
"assignees": ["rarkins", "viceice"],
"semanticCommitScope": "deps",
"automergeType": "pr",
"prCreation": "immediate",
"ignorePresets": [":ignoreModulesAndTests"],
"ignorePaths": ["**/node_modules/**", "**/__fixtures__/**", "test/**"],
"rebaseWhen": "conflicted",
"dockerfile": {
"semanticCommitType": "build"
},
"packageRules": [
{
"matchPackageNames": ["containerbase/node"],
"versioning": "node"
},
{
"matchDepTypes": ["dependencies", "optionalDependencies"],
"semanticCommitType": "build"
},
{
"matchPackageNames": ["semantic-release"],
"semanticCommitType": "build"
},
{
"matchPackageNames": ["@types/jest"],
"groupName": "jest monorepo"
},
{
"matchFileNames": ["**/__fixtures__/**"],
"enabled": false
},
{
"description": "set fix scope for base image",
"matchDepNames": ["ghcr.io/renovatebot/base-image"],
"semanticCommitType": "fix"
},
{
"description": "set feat scope for base image major",
"matchDepNames": ["ghcr.io/renovatebot/base-image"],
"matchUpdateTypes": ["major", "minor"],
"semanticCommitType": "feat"
},
{
"description": "set build scope for node updates",
"matchPackageNames": ["node"],
"matchFileNames": [".nvmrc", "tools/docker/Dockerfile"],
"semanticCommitType": "build"
},
{
"description": "set branch prefix for node major updates to split from minor updates",
"matchPackageNames": ["node"],
"matchUpdateTypes": ["major"],
"additionalBranchPrefix": "major"
},
{
"description": "disable some invalid deps from docs",
"matchPackageNames": ["my.old.registry/**", "my.new.registry/**"],
"matchFileNames": ["docs/**/*.md"],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["config/options/index.ts"],
"matchStrings": [
"default: '(?<depName>ghcr.io/containerbase/sidecar):(?<currentValue>.*)'"
],
"datasourceTemplate": "docker"
}
]
}