{% extends "layout.html" %} {% block title %}PR {{ number }}{% endblock %} {% block content %}
| id | name | state | exit_code | duration |
|---|---|---|---|---|
| {{ job['job_id'] }} | {{ job['name'] }} | {{ job['state'] }} | {% if 'exit_code' in job and job['exit_code'] is not none %} {% if job['exit_code'] == 0 %} Success 🎉 {% else %} Failure 🤷♀️ {% endif %} ({{ job['exit_code'] }}) {% endif %} | {% if 'duration' in job and job['duration'] %} {{ job['duration'] }} {% endif %} |
Build error:
{{ exception }}
{% else %}
No build running.
{% endif %}
| id | state |
|---|---|
| {{ batch['id'] }} | {% if 'state' in batch and batch['state'] %} {{ batch['state'] }} {% endif %} {% if not batch['complete'] %} running {% endif %} |