Skip to content

Commit

Permalink
Update renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Mogyuchi committed Jun 28, 2024
1 parent 3b981ac commit 3dd282c
Showing 1 changed file with 27 additions and 18 deletions.
45 changes: 27 additions & 18 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"config:js-app",
":automergeAll",
":automergePr",
":labels(dependencies, semver:none)",
":labels(dependencies)",
":maintainLockFilesWeekly",
":pathSemanticCommitType(.github/workflows/**, ci)",
":prHourlyLimitNone",
Expand All @@ -19,37 +19,46 @@
"assignAutomerge": true,
"assigneesFromCodeOwners": true,
"commitBodyTable": true,
"commitMessageAction": "bump",
"commitMessageExtra": "from {{#if currentValue}}{{{currentValue}}}{{else}}{{{currentDigestShort}}}{{/if}} to {{#if isPinDigest}}{{{newDigestShort}}}{{else}}{{#if isSingleVersion}}{{prettyNewVersion}}{{else}}{{#if newValue}}{{{newValue}}}{{else}}{{{newDigestShort}}}{{/if}}{{/if}}{{/if}}",
"commitMessageTopic": "{{depName}}",
"dependencyDashboardAutoclose": true,
"prConcurrentLimit": 3,
"reviewersFromCodeOwners": true,
"packageRules": [
{
"matchDepTypes": [
"dependencies",
"require"
],
"labels": [
"dependencies",
"semver:patch"
]
"matchDepTypes": ["dependencies", "require"],
"semanticCommitType": "deps",
"semanticCommitScope": null
},
{
"matchManagers": [
"custom.regex"
],
"matchDepTypes": ["devDependencies"],
"semanticCommitType": "chore",
"semanticCommitScope": "deps-dev"
},
{
"matchManagers": ["npm"],
"addLabels": ["javascript"]
},
{
"matchManagers": ["github-actions"],
"addLabels": ["github_actions"],
"commitMessageTopic": "{{depName}}"
},
{
"matchManagers": ["custom.regex"],
"pinDigests": false
},
{
"matchDepTypes": ["packageManager"],
"commitMessageExtra": "from {{{currentVersion}}} to {{{newValue}}}"
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"(^|/)\\.npmrc$"
],
"matchStrings": [
"use-node-version=(?<currentValue>.*?)\\n"
],
"fileMatch": ["(^|/)\\.npmrc$"],
"matchStrings": ["use-node-version=(?<currentValue>.*?)\\n"],
"depNameTemplate": "node",
"datasourceTemplate": "node-version"
}
Expand Down

0 comments on commit 3dd282c

Please sign in to comment.