This repository has no description
1{{ define "repo/fragments/commitPipelineStatuses" }}
2 {{ range $sha, $pipeline := .Pipelines }}
3 {{ if gt (len $pipeline.Statuses) 0 }}
4 <span id="commit-pipeline-{{ $sha }}" hx-swap-oob="outerHTML:#commit-pipeline-{{ $sha }}">
5 {{ template "repo/pipelines/fragments/pipelineSymbolLong" (dict "RepoInfo" $.RepoInfo "Pipeline" $pipeline) }}
6 </span>
7 {{ end }}
8 {{ end }}
9{{ end }}