{% if custom_css %}
{% endif %}
{{ pipeline.name }}
{% for stage in pipeline.stages %}
{{ stage.name }}
{% for job_name, job in stage.jobs %}
{{ job_name }}
Stage:
{{ job.stage }}
Dependencies:
{{ job.needs|join(', ') or 'None' }}
Allow Failure:
{{ job.allow_failure|default(false)|string|lower }}
Source:
View in YAML
{% if job.artifacts %}
Artifacts:
{% for artifact in job.artifacts %}
{{ artifact }}
{% endfor %}
{% endif %}
{% endfor %}
{% if stage.name in pipeline.artifacts and pipeline.artifacts[stage.name] %}
{{stage.name}} Artifacts
{% for artifact in pipeline.artifacts[stage.name] %}
{{ artifact }}
{% endfor %}
{% endif %}
{% endfor %}
All Artifacts
{% for artifact in pipeline.all_artifacts %}
{{ artifact }}
{% endfor %}