Files
gh-action-readme/.github/renovate.json

52 lines
986 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",
"requiredStatusChecks": null
},
{
"matchPackagePatterns": [
"^golang.org/x/"
],
"groupName": "golang.org/x packages"
}
],
"prConcurrentLimit": 3,
"prHourlyLimit": 2
}