{% for branch, workflows in repo.workflows_by_branch.items() %}
{% for wf in workflows %}
{% endfor %}
{% if not loop.last %} |{% endif %}
{% endfor %}
|
{# ── Checks ── #}
{% if repo.checks_by_branch %}
{% for branch, checks in repo.checks_by_branch.items() %}
{% for chk in checks %}
{% endfor %}
{% if not loop.last %} |{% endif %}
{% endfor %}
{% endif %}
|