Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions dev/backports/checklist/checklist.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ func BuildComment(pkgs []PackageBranches, checked map[string]bool) string {
fmt.Fprintln(&b, marker)
fmt.Fprintln(&b, "## Backport branches")
fmt.Fprintln(&b)
fmt.Fprintln(&b, "Only branches for packages touched by this PR's current diff are shown.")
fmt.Fprintln(&b, "> [!IMPORTANT]")
fmt.Fprintln(&b, "> Only branches for packages touched by this PR's current diff are shown.")
fmt.Fprintln(&b, "> This comment is updated automatically on each push — manual edits will be overwritten.")
fmt.Fprintln(&b)
fmt.Fprintln(&b, "Consider backporting this change to the branches listed below.")
fmt.Fprintln(&b)
fmt.Fprintln(&b, "This comment is updated automatically on each push — manual edits will be overwritten.")
fmt.Fprintln(&b, "Active backport branches for the packages touched by this PR:")

for _, p := range pkgs {
if len(p.Branches) == 0 {
Expand Down
Loading