fix: make Actions log parser support multiple line message encoding (#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: silverwind <me@silverwind.io>
This commit is contained in:
wxiaoguang
2026-07-27 22:24:46 +08:00
committed by GitHub
parent 7efcb8d6ca
commit dd407ee3e8
3 changed files with 23 additions and 6 deletions
+1 -1
View File
@@ -722,7 +722,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;
}