From 8b5abc6b1e49bc67ec9e586c592375afde0e59e9 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 23 May 2026 22:47:48 -0500 Subject: [PATCH] fix(actions): align runs list template classes with refactored CSS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The runs_list.tmpl used old class names (flex-list, flex-item, flex-item-leading, flex-item-main, flex-item-trailing, flex-item-title, flex-item-body) that no longer exist in the CSS. The shared flex-list stylesheet was refactored to use flex-divided-list, items-with-main, item, item-leading, item-main, item-trailing, item-title, item-body. Without matching CSS, the Actions runs list lost all flex layout — items were not displayed as proper rows. Co-Authored-By: Claude Opus 4.6 (1M context) --- templates/repo/actions/runs_list.tmpl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/repo/actions/runs_list.tmpl b/templates/repo/actions/runs_list.tmpl index 0f35fa014e..f60d480f8a 100644 --- a/templates/repo/actions/runs_list.tmpl +++ b/templates/repo/actions/runs_list.tmpl @@ -1,4 +1,4 @@ -
+
{{if not .Runs}}
{{svg "octicon-no-entry" 48}} @@ -6,19 +6,19 @@
{{end}} {{range $run := .Runs}} -
-
+
+
{{template "repo/actions/status" (dict "status" $run.Status.String)}}
-
- +
+ {{if $run.Title}} {{ctx.RenderUtils.RenderCommitMessageLinkSubject $run.Title $run.Link $.Repository}} {{else}} {{ctx.Locale.Tr "actions.runs.empty_commit_message"}} {{end}} -
+
{{if not $.CurWorkflow}}{{$run.WorkflowID}} {{end}}#{{$run.Index}}: {{- if $run.ScheduleID -}} @@ -38,7 +38,7 @@ {{end}}
-
+
{{if $run.IsRefDeleted}} {{$run.PrettyRef}} {{else}} -- 2.52.0