Commit 2b01b385 authored by Thomas Boni's avatar Thomas Boni
Browse files

remove useless blank lines and protect job name in template

parent 70c8cf88
Loading
Loading
Loading
Loading
+13 −11
Original line number Diff line number Diff line
{{ readme }}

??? License
{% for line in license %}
  {% if line %}
{%- for line in license -%}
  {%- if line %}
    {{ line }}
  {% endif %}
{% endfor %}
  {%- endif -%}
{%- endfor %}

# Changelog

* **[latest]({{ latest.url }})** (current -> `{{ latest.version }}`): `{{ latest.url }}`
{% for version in changelogs %}
??? {{ version.version }}

{% for version in changelogs -%}
??? "{{ version.version }}"
    `{{ version.url }}`
  {% for line in version.changelog %}
    {% if line %}
    {%- if line %}
    {{ line }}
    {% endif %}
  {% endfor %}
    {%- endif %}
  {%- endfor %}
{% endfor %}

{% if code_owner %}
{%- if code_owner %}
-- 🔨 Maintainer: <img src='{{ gitlab_image }}' alt='avatar' style='width: 20px; height: 20px; border-radius: 50%'> [{{ code_owner_name }}]({{ code_owner_url }}) @{{ code_owner }}
{% endif %}
 No newline at end of file
{%- endif %}