IBM / pwa-lit-template

A template for building Progressive Web Applications using Lit and Vaadin Router.

Home Page:https://pwa-lit-template.mybluemix.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Setup Renovate to test and merge minor and patch releases without PR

abdonrd opened this issue · comments

We want to try setup Renovate to test and merge minor and patch releases without PR.

Current config:

{
"extends": [
"config:base",
":separateMultipleMajorReleases",
":maintainLockFilesWeekly"
],
"rangeStrategy": "bump",
"packageRules": [
{
"matchDepTypes": ["engines"],
"enabled": false
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
}
],
"lockFileMaintenance": {
"automerge": true
}
}