aquavm/.github/renovate.json
Anatolios Laskaris 474bfd1baa
chore(ci): Notify on release failures and other small CI changes [fixes FLU-222, FLU-194, FLU-41 and FLU-196] (#441)
* Add `e2e / status` job

* Update renovate config

* Notify when release fails

* Add timeout

* Update fluence npm dependencies at any time

* Typo

* Notify only on failures

* Fail on skipped
2023-01-24 16:00:03 +02:00

40 lines
887 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":semanticCommitTypeAll(chore)"
],
"enabledManagers": ["cargo", "npm", "github-actions"],
"schedule": "every weekend",
"packageRules": [
{
"matchPackagePatterns": ["^@wasmer", "^wasmer", "^wasm-bindgen"],
"enabled": false
},
{
"matchManagers": ["cargo", "npm"],
"matchPackagePatterns": [
"@fluencelabs/.*",
"fluence-.*",
"marine-.*",
"marine"
],
"semanticCommitType": "fix",
"semanticCommitScope": "deps",
"schedule": "at any time"
},
{
"matchDepTypes": ["devDependencies"],
"prPriority": -1
},
{
"matchUpdateTypes": ["major"],
"prConcurrentLimit": 1
},
{
"matchManagers": ["github-actions"],
"prPriority": 1
}
]
}