diff --git a/renovate.json5 b/renovate.json5 index fa9adb840aa..4f5f05fd712 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,44 +1,41 @@ { extends: [ - "github>cybozu/renovate-config", - ":prConcurrentLimitNone" + 'github>cybozu/renovate-config', + ':prConcurrentLimitNone', ], - rangeStrategy: "pin", + rangeStrategy: 'pin', npm: { packageRules: [ { - // set `chore` to the commit for updating packages - matchPackagePatterns: [ - "*" + semanticCommitType: 'chore', + matchPackageNames: [ + '*', ], - semanticCommitType: "chore", }, { - // automerge minor updates of devDependencies - matchPackagePatterns: [ - "*" - ], matchDepTypes: [ - "devDependencies" + 'devDependencies', ], matchUpdateTypes: [ - "minor" + 'minor', ], automerge: true, + matchPackageNames: [ + '*', + ], }, ], }, - "packageRules": [ + packageRules: [ { - // Third party actions should be pinned with digest - "matchDepTypes": [ - "action" + matchDepTypes: [ + 'action', ], - excludePackagePrefixes: [ - "actions/", - "cybozu/" + pinDigests: true, + matchPackageNames: [ + '!actions/{/,}**', + '!cybozu/{/,}**', ], - "pinDigests": true - } - ] + }, + ], }