diff --git a/src/action.go b/src/action.go index c0f3ebe..78d34da 100644 --- a/src/action.go +++ b/src/action.go @@ -65,10 +65,10 @@ func updateOrCreateDraftRelease(a *Action, cfg *config.RepoConfig) (*gitea.Relea fmt.Fprintf(&b, "## %s\n\n", strings.Title(label)) for _, pr := range prs { - fmt.Fprintf(&b, "* %s (#%d) @%s", pr.Title, pr.ID, pr.Poster.UserName) + fmt.Fprintf(&b, "* %s (#%d) @%s\n", pr.Title, pr.ID, pr.Poster.UserName) } - b.WriteString("\n\n") + b.WriteString("\n") } } }