diff --git a/{{ cookiecutter.slug }}/renovate.json b/{{ cookiecutter.slug }}/renovate.json index 8886138..04905bc 100644 --- a/{{ cookiecutter.slug }}/renovate.json +++ b/{{ cookiecutter.slug }}/renovate.json @@ -26,21 +26,21 @@ ], "separateMinorPatch": true, "packageRules": [ - {% if cookiecutter.automerge_patch == "y" %} + {%- if cookiecutter.automerge_patch == "y" %} { "matchUpdateTypes": ["patch"], - {% if cookiecutter.automerge_patch_v0 != "y" %} + {%- if cookiecutter.automerge_patch_v0 != "y" %} "matchCurrentVersion": "!/^v?0\\./",{# negative match: do not match versions that match regex `^v?0\.` #} - {% endif %} + {%- endif %} "automerge": true, - {# 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. #} + {#- 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": [ "dependency", "automerge" ] } - {% endif %} - {# re: SYN-785 - Later rules take precedence, so add more specific package rules below. #} + {%- endif %} + {#- re: SYN-785 - Later rules take precedence, so add more specific package rules below. #} ] }