mirror of
https://github.com/fluencelabs/aqua-lib
synced 2024-12-04 07:10:24 +00:00
4cd81dbe43
* Add release-please and update PR CI * Add renovate config * Update renovate config * Fix
30 lines
591 B
JSON
30 lines
591 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:base"
|
|
],
|
|
"enabledManagers": ["npm", "github-actions"],
|
|
"schedule": "every weekend",
|
|
"packageRules": [
|
|
{
|
|
"matchUpdateTypes": ["major"],
|
|
"prConcurrentLimit": 1
|
|
},
|
|
{
|
|
"matchManagers": ["github-actions"],
|
|
"prPriority": 1
|
|
},
|
|
{
|
|
"matchManagers": ["npm"],
|
|
"matchPackagePatterns": [
|
|
"@fluencelabs/.*"
|
|
],
|
|
"schedule": "at any time"
|
|
},
|
|
{
|
|
"matchDepTypes": ["devDependencies"],
|
|
"prPriority": -1
|
|
}
|
|
]
|
|
}
|