marine/.github/renovate.json
Anatolios Laskaris 1668c8fdbf
chore(ci): Notify on release failures and other small CI changes [fixes FLU-222, FLU-41 and FLU-196] (#254)
* Notify on release failure

* Add timeout

* Add `e2e / status` job

* Fix adding binary

* Notify only on failures

* Fail on skipped
2023-01-24 15:59:56 +02:00

29 lines
627 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":semanticCommitTypeAll(chore)"
],
"enabledManagers": ["cargo", "npm", "github-actions"],
"schedule": "every weekend",
"rangeStrategy": "pin",
"packageRules": [
{
"matchPackagePatterns": ["^@wasmer", "^wasmer", "^wasm-bindgen"],
"enabled": false
},
{
"matchDepTypes": ["devDependencies"],
"prPriority": -1
},
{
"matchUpdateTypes": ["major"],
"prConcurrentLimit": 1
},
{
"matchManagers": ["github-actions"],
"prPriority": 1
}
]
}