mirror of
https://github.com/go-task/task.git
synced 2026-07-01 16:44:34 +00:00
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended",
|
|
"group:allNonMajor",
|
|
"schedule:weekly",
|
|
":semanticCommitTypeAll(chore)"
|
|
],
|
|
"addLabels":["area: dependencies"],
|
|
"osvVulnerabilityAlerts": true,
|
|
"postUpdateOptions": ["gomodTidy"],
|
|
"customManagers": [
|
|
{
|
|
"customType": "regex",
|
|
"managerFilePatterns": ["/^\\.github/workflows/.*\\.ya?ml$/"],
|
|
"matchStrings": [
|
|
"uses:\\s*golangci/golangci-lint-action@\\S+(?:\\s*#[^\\n]*)?\\s+with:\\s+version:\\s*(?<currentValue>v[\\d.]+)"
|
|
],
|
|
"datasourceTemplate": "github-releases",
|
|
"depNameTemplate": "golangci/golangci-lint"
|
|
}
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": ["gomod"],
|
|
"matchDepTypes": ["indirect"],
|
|
"enabled": true
|
|
},
|
|
{
|
|
"matchUpdateTypes": ["digest", "pinDigest"],
|
|
"groupName": "all non-major dependencies",
|
|
"groupSlug": "all-minor-patch"
|
|
},
|
|
{
|
|
"matchManagers": ["github-actions"],
|
|
"addLabels": ["area: github actions"]
|
|
},
|
|
{
|
|
"matchCategories": ["js", "node"],
|
|
"addLabels": ["lang: javascript"]
|
|
},
|
|
{
|
|
"matchCategories": ["golang"],
|
|
"addLabels": ["lang: go"]
|
|
}
|
|
]
|
|
}
|