headscale/.github/renovate.json

35 lines
970 B
JSON
Raw Normal View History

2022-02-15 05:58:01 +08:00
{
"baseBranches": ["main"],
2022-02-15 06:33:55 +08:00
"username": "renovate-release",
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
"branchPrefix": "renovateaction/",
"onboarding": false,
2022-02-15 05:58:01 +08:00
"extends": ["config:base", ":rebaseStalePrs"],
2022-02-15 06:33:55 +08:00
"ignorePresets": [":prHourlyLimit2"],
"enabledManagers": ["dockerfile", "gomod", "github-actions", "regex"],
2022-02-15 06:33:55 +08:00
"includeForks": true,
"repositories": ["juanfont/headscale"],
"platform": "github",
"packageRules": [
{
"matchDatasources": ["go"],
"groupName": "Go modules",
"groupSlug": "gomod",
"separateMajorMinor": false
2022-02-15 06:33:55 +08:00
},
{
"matchDatasources": ["docker"],
"groupName": "Dockerfiles",
"groupSlug": "dockerfiles"
}
2022-02-15 06:33:55 +08:00
],
"regexManagers": [
{
"fileMatch": [".github/workflows/.*.yml$"],
"matchStrings": ["\\s*go-version:\\s*\"?(?<currentValue>.*?)\"?\\n"],
2022-02-15 06:33:55 +08:00
"datasourceTemplate": "golang-version",
"depNameTemplate": "actions/go-version"
}
]
2022-02-15 05:58:01 +08:00
}