Skip to content

Commit 0112c9e

Browse files
committed
GHA summary: need empty line after <details>
1 parent 045e26a commit 0112c9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/gha-summary.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ create_gha_summary <- function(results) {
1111
p <- function(...) cat(..., file = out, append = TRUE)
1212

1313
# header
14-
p("<details>\n")
14+
p("<details>\n\n")
1515
p("# Test results\n\n")
1616
p("| FAIL | WARN | SKIP | PASS | Context | Test | Time |\n")
1717
p("|-----:|-----:|-----:|-----:|:--------|:-----|:-----|\n")
@@ -32,7 +32,7 @@ create_gha_summary <- function(results) {
3232
"|\n"
3333
))
3434

35-
p("</details>\n")
35+
p("\n</details>\n")
3636

3737
invisible(results)
3838
}

0 commit comments

Comments
 (0)