Factory Updates
Health · Automations · Deliveries
Status
- Status
-
{{ state.status }}
{% if state.current %}
- Current
- {{ state.current.tag }} · {{ state.current.commit[:12] }} · {{ state.current.locked_libraries | join(', ') }}
{% endif %}
{% if state.previous %}
- Previous
- {{ state.previous.tag }} · {{ state.previous.commit[:12] }} · {{ state.previous.locked_libraries | join(', ') }}
{% endif %}
{% if state.pending %}
- Pending
- {{ state.pending.tag }} · {{ state.pending.commit[:12] }}
{% endif %}
{% if state.updated_at %}
- Updated
- {{ state.updated_at }}
{% endif %}
Evidence
{% if evidence %}
{% for name in evidence %}
- {{ name }}
{% endfor %}
{% else %}
No update evidence yet.
{% endif %}
History
{% if events %}
{% for event in events %}
- {{ event.at }}
{{ event.kind }} {{ event.get('tag', '') }} {{ event.get('commit', '') }}
{% endfor %}
{% else %}
No update activity recorded.
{% endif %}