Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 19 additions & 22 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -1,43 +1,40 @@
{
extends: [
"github>cybozu/renovate-config",
":prConcurrentLimitNone"
'github>cybozu/renovate-config',
':prConcurrentLimitNone',
],
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
}
]
},
],
}
Loading