aqua/.github/renovate.json
Anatolios Laskaris 3b0d31325a
chore: Make renovate care for unstable versions (#942)
Make renovate care for unstable versions

Co-authored-by: Dima <dmitry.shakhtarin@fluence.ai>
2023-11-02 10:07:23 +02:00

39 lines
921 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":semanticCommitTypeAll(chore)"
],
"respectLatest": false,
"ignorePaths": ["api/aqua-api-example/**"],
"enabledManagers": ["sbt", "npm", "github-actions"],
"rangeStrategy": "pin",
"schedule": "every weekend",
"packageRules": [
{
"matchManagers": ["npm"],
"matchPackagePatterns": [
"@fluencelabs/.*"
],
"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
}
]
}