diff --git a/tools/pipeline/internal/cmd/github_copy_pull_request.go b/tools/pipeline/internal/cmd/github_copy_pull_request.go index e009c74d93..cc8631bbd1 100644 --- a/tools/pipeline/internal/cmd/github_copy_pull_request.go +++ b/tools/pipeline/internal/cmd/github_copy_pull_request.go @@ -67,6 +67,10 @@ func runCopyGithubPullRequestCmd(cmd *cobra.Command, args []string) error { return errors.Join(err, err1) } fmt.Println(string(b)) + case "markdown": + tbl := res.ToTable(err) + tbl.SetTitle("Copy Pull Request") + fmt.Println(tbl.RenderMarkdown()) default: fmt.Println(res.ToTable(err).Render()) }