mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-01-26 11:14:04 +00:00
* chore(config): migrate config .github/renovate.json * chore: do not ignore test results --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ismo Vuorinen <ismo@ivuorinen.net>
52 lines
977 B
JSON
52 lines
977 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"github>ivuorinen/renovate-config"
|
|
],
|
|
"labels": [
|
|
"dependencies"
|
|
],
|
|
"assigneesFromCodeOwners": true,
|
|
"reviewersFromCodeOwners": true,
|
|
"semanticCommits": "enabled",
|
|
"semanticCommitType": "chore",
|
|
"semanticCommitScope": "deps",
|
|
"postUpdateOptions": [
|
|
"gomodUpdateImportPaths"
|
|
],
|
|
"gomod": {
|
|
"enabled": true
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"matchDatasources": [
|
|
"go"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"major"
|
|
],
|
|
"enabled": false
|
|
},
|
|
{
|
|
"matchDatasources": [
|
|
"go"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"automerge": true,
|
|
"automergeType": "pr",
|
|
"ignoreTests": false
|
|
},
|
|
{
|
|
"groupName": "golang.org/x packages",
|
|
"matchPackageNames": [
|
|
"/^golang.org/x//"
|
|
]
|
|
}
|
|
],
|
|
"prConcurrentLimit": 3,
|
|
"prHourlyLimit": 2
|
|
}
|