fix: make Actions log parser support multiple line message encoding (#38659) (#38664)

Backport #38659

fix #38652


UI part (`.log-msg`) uses "white-space: break-spaces;" so the new line
can be correctly rendered.

Signed-off-by: silverwind <me@silverwind.io>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
Giteabot
2026-07-27 07:47:14 -07:00
committed by GitHub
parent 2695b47887
commit 2b37732d5f
3 changed files with 23 additions and 6 deletions
+1 -1
View File
@@ -723,7 +723,7 @@ async function hashChangeListener() {
.job-step-logs .job-log-line .log-msg {
flex: 1;
white-space: break-spaces;
white-space: break-spaces; /* decoded commands like "::error::foo%0Abar" contain "\n" */
margin-left: 12px;
overflow-wrap: anywhere;
}