This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / templates / repo / fragments / commitPipelineStatuses.html
400 B 9 lines
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 }}