{% extends '_base.html.twig' %} {% block body %}
{% if build.pipeline.status == 'success' %} {% else %} {% endif %}
Successful pipeline #{{ build.pipeline.number }} Failed pipeline #{{ build.pipeline.number }}
{% if body is defined and body|length > 0 %}
{{ include(template_from_string(body), build) }}
{% else %}
Repo: {{ build.repo.full_name }}
Author: {{ build.commit.author }} ({{ build.commit.author_email }})
Branch: {{ build.commit.branch }}
Commit: {{ build.commit.sha[0:8] }}
Started at: {{ build.build.created_at|date('r') }}

{{ build.commit.message }}
{% endif %}
{% endblock %}