From eda7e40909649fa6407e6819d0bdffa3743c8271 Mon Sep 17 00:00:00 2001 From: dawn Date: Wed, 22 Jul 2026 13:02:03 +0300 Subject: [PATCH] appview/pages/repo/pulls: add latest ci status to pr title in pull page Signed-off-by: dawn --- .../pages/templates/repo/pulls/fragments/pullHeader.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/appview/pages/templates/repo/pulls/fragments/pullHeader.html b/appview/pages/templates/repo/pulls/fragments/pullHeader.html index 182a8451..c01193c3 100644 --- a/appview/pages/templates/repo/pulls/fragments/pullHeader.html +++ b/appview/pages/templates/repo/pulls/fragments/pullHeader.html @@ -1,8 +1,14 @@ {{ define "repo/pulls/fragments/pullHeader" }}
-

+ {{ $pipeline := index .Pipelines .Pull.LatestSha }} +

{{ .Pull.Title | description }} #{{ .Pull.PullId }} + {{ if and $pipeline $pipeline.Id }} + + {{ template "repo/pipelines/fragments/pipelineSymbolLong" (dict "Pipeline" $pipeline "RepoInfo" .RepoInfo) }} + + {{ end }}

-- 2.51.2