This repository has no description
0

Configure Feed

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

appview/pages/repo/pulls: add latest ci status to pr title in pull page

Signed-off-by: dawn <dawn@tangled.org>

author
dawn
date (Jul 22, 2026, 1:30 PM +0300) commit eda7e409 parent 079c99a6 change-id uroxpxpn
+7 -1
+7 -1
appview/pages/templates/repo/pulls/fragments/pullHeader.html
··· 1 1 {{ define "repo/pulls/fragments/pullHeader" }} 2 2 <header class="pb-2"> 3 - <h1 class="text-2xl dark:text-white"> 3 + {{ $pipeline := index .Pipelines .Pull.LatestSha }} 4 + <h1 class="flex flex-wrap items-center gap-2 text-2xl dark:text-white"> 4 5 {{ .Pull.Title | description }} 5 6 <span class="text-gray-500 dark:text-gray-400">#{{ .Pull.PullId }}</span> 7 + {{ if and $pipeline $pipeline.Id }} 8 + <span class="text-sm"> 9 + {{ template "repo/pipelines/fragments/pipelineSymbolLong" (dict "Pipeline" $pipeline "RepoInfo" .RepoInfo) }} 10 + </span> 11 + {{ end }} 6 12 </h1> 7 13 </header> 8 14