diff --git a/{{ cookiecutter.slug }}/renovate.json b/{{ cookiecutter.slug }}/renovate.json index d36446a..46d4105 100644 --- a/{{ cookiecutter.slug }}/renovate.json +++ b/{{ cookiecutter.slug }}/renovate.json @@ -28,10 +28,11 @@ "packageRules": [ { "matchUpdateTypes": ["patch"], - "matchCurrentVersion": ">=1.0.0", + "matchCurrentVersion": "!/^v?0\\./",{# negative match: do not match versions that match regex `^v?0\.` #} "automerge": true, - {# We can't use Platform Automerge because they are configured manually, so we can't be sure the "require status checks" option is always enabled, and without that, platformAutomerge does not wait for tests to pass. #} - "platformAutomerge": false + {# We can't use Platform Automerge because the repositories are configured manually, so we can't be sure the "require status checks" option is always enabled, and without that, platformAutomerge does not wait for tests to pass. #} + "platformAutomerge": false, + "labels": ["automerge"] } ] }