File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ let pp_github_team (team : github_team) = gh_name_of_string team.slug
48
48
49
49
let populate_pull_request repository (pull_request : pull_request ) =
50
50
let ({
51
- body;
52
51
title;
53
52
number;
54
53
html_url;
@@ -92,11 +91,10 @@ let populate_pull_request repository (pull_request : pull_request) =
92
91
title = Some (get_title () );
93
92
title_link = Some html_url;
94
93
fallback = Some (sprintf " [%s] %s" repository.full_name title);
95
- text = Some (Mrkdwn. mrkdwn_of_markdown body);
96
94
}
97
95
98
96
let populate_issue repository (issue : issue ) =
99
- let ({ body; title; number; html_url; user; assignees; comments; labels; state; _ } : issue ) = issue in
97
+ let ({ title; number; html_url; user; assignees; comments; labels; state; _ } : issue ) = issue in
100
98
let fields =
101
99
[
102
100
" Assignees" , List. map assignees ~f: pp_github_user;
@@ -118,7 +116,6 @@ let populate_issue repository (issue : issue) =
118
116
title = Some (get_title () );
119
117
title_link = Some html_url;
120
118
fallback = Some (sprintf " [%s] %s" repository.full_name title);
121
- text = Some (Mrkdwn. mrkdwn_of_markdown body);
122
119
}
123
120
124
121
let populate_commit repository (commit : api_commit ) =
You can’t perform that action at this time.
0 commit comments