Varakh
d0312a5853
All checks were successful
/ build (push) Successful in 5m30s
Reviewed-on: #43 Co-authored-by: Varakh <varakh@varakh.de> Co-committed-by: Varakh <varakh@varakh.de>
96 lines
1.9 KiB
Text
96 lines
1.9 KiB
Text
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended",
|
|
":rebaseStalePrs",
|
|
":ignoreUnstable",
|
|
"group:monorepos",
|
|
"group:recommended"
|
|
],
|
|
"prConcurrentLimit": 0,
|
|
"schedule": [
|
|
"monthly"
|
|
],
|
|
// security
|
|
"osvVulnerabilityAlerts": true,
|
|
"dependencyDashboardOSVVulnerabilitySummary": "all",
|
|
// skip next alpine, see https://github.com/mattn/go-sqlite3/issues/1164
|
|
"packageRules": [
|
|
// oci
|
|
{
|
|
"matchPackageNames": [
|
|
"alpine"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"minor",
|
|
"major"
|
|
],
|
|
"enabled": false
|
|
},
|
|
// go
|
|
{
|
|
"matchManagers": [
|
|
"gomod"
|
|
],
|
|
"matchPackagePrefixes": [
|
|
"github.com/go-co-op/gocron"
|
|
],
|
|
"groupName": "gocron"
|
|
},
|
|
{
|
|
"matchManagers": [
|
|
"gomod"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"minor"
|
|
],
|
|
"groupName": "GoLang: all minor dependencies",
|
|
"groupSlug": "golang-all-minor-deps"
|
|
},
|
|
{
|
|
"matchManagers": [
|
|
"gomod"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"patch"
|
|
],
|
|
"groupName": "GoLang: all patch dependencies",
|
|
"groupSlug": "golang-all-patch-deps"
|
|
},
|
|
// node
|
|
// GLOBAL: ignore @types/node major and minor (manual upgrade with pipeline required)
|
|
{
|
|
"matchManagers": [
|
|
"npm"
|
|
],
|
|
"matchPackageNames": [
|
|
"@types/node"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"major",
|
|
"minor"
|
|
],
|
|
"enabled": false
|
|
},
|
|
{
|
|
"matchManagers": [
|
|
"npm"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"minor"
|
|
],
|
|
"groupName": "Node: all minor dependencies",
|
|
"groupSlug": "node-all-minor-deps"
|
|
},
|
|
{
|
|
"matchManagers": [
|
|
"npm"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"patch"
|
|
],
|
|
"groupName": "Node: all patch dependencies",
|
|
"groupSlug": "node-all-patch-deps"
|
|
}
|
|
]
|
|
}
|