mirror of
https://github.com/fluencelabs/trust-graph
synced 2024-12-04 07:10:21 +00:00
39 lines
923 B
JSON
39 lines
923 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:base",
|
|
":semanticCommitTypeAll(chore)"
|
|
],
|
|
"enabledManagers": ["cargo", "npm", "github-actions", "pip_requirements"],
|
|
"rangeStrategy": "pin",
|
|
"schedule": "every weekend",
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": ["cargo", "npm"],
|
|
"matchPackagePatterns": [
|
|
"@fluencelabs/.*",
|
|
"fluence-.*",
|
|
"marine-.*"
|
|
],
|
|
"semanticCommitType": "fix",
|
|
"semanticCommitScope": "deps",
|
|
"schedule": "at any time"
|
|
},
|
|
{
|
|
"matchDepTypes": ["devDependencies"],
|
|
"prPriority": -1,
|
|
"semanticCommitType": "chore",
|
|
"semanticCommitScope": "deps"
|
|
},
|
|
{
|
|
"matchUpdateTypes": ["major"],
|
|
"prConcurrentLimit": 1
|
|
},
|
|
{
|
|
"matchManagers": ["github-actions"],
|
|
"groupName": "all github-actions",
|
|
"prPriority": -1
|
|
}
|
|
]
|
|
}
|