{{ run.pipeline_name }}

{{ run.description }}
Run {% include "scanpipe/includes/run_status_tag.html" with run=run only %}
{% if run.selected_groups %}
Selected groups {% for group in run.selected_groups %} {% if not forloop.first %},{% endif %} {{ group }} {% endfor %}
{% endif %} {% if run.status == run.Status.NOT_STARTED or run.status == run.Status.QUEUED %} Delete pipeline Select steps {% endif %} {% if run.task_exitcode %}
Exit code {{ run.task_exitcode }}
{% endif %} {% if run.execution_time %}
Execution time {{ run.execution_time_for_display }}
{% endif %} {% if run.status == run.Status.RUNNING %} Stop pipeline {% endif %} {% if run.status == run.Status.SUCCESS and run.results_url %} View pipeline results {% endif %}
{% if run.execution_time %}
ScanCode.io version {% with run.get_diff_url as diff_url %} {% if diff_url %} {{ run.scancodeio_version }} {% else %} {{ run.scancodeio_version }} {% endif %} {% endwith %}
{% endif %} {% if run.task_id %}
Task ID {{ run.task_id }}
{% endif %}
Created date {{ run.created_date }}
{% if run.task_start_date %}
Start date {{ run.task_start_date }}
{% endif %} {% if run.task_end_date %}
End date {{ run.task_end_date }}
{% endif %}
{% if run.log %}
Run log
{{ run.log }}
{% endif %} {% if run.task_output %}
Task output
{{ run.task_output }}
{% endif %} {% if webhook_deliveries %}
{% for webhook_delivery in webhook_deliveries %}
Webhook delivery {{ webhook_delivery.uuid }}
Target URL {{ webhook_delivery.target_url|truncatechars:30 }}
Delivered {{ webhook_delivery.delivered|yesno }}
{% if webhook_delivery.delivery_error %}
Delivery error
{{ webhook_delivery.delivery_error }}
{% endif %} {% if webhook_delivery.delivered %}
HTTP code {{ webhook_delivery.response_status_code }}
{% if webhook_delivery.response_text %}
Response
{{ webhook_delivery.response_text }}
{% endif %} {% endif %} {% endfor %} {% endif %}