Skip to content

Commit 8b75d70

Browse files
committed
fmt
1 parent a915e5a commit 8b75d70

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

lib/slack.ml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ let generate_pull_request_notification notification channel =
5050
)
5151
in
5252
let summary =
53-
sprintf "<%s|[%s]> Pull request #%d <%s|%s> %s by *%s*" repository.url repository.full_name number html_url (escape title)
54-
action sender.login
53+
sprintf "<%s|[%s]> Pull request #%d <%s|%s> %s by *%s*" repository.url repository.full_name number html_url
54+
(escape title) action sender.login
5555
in
5656
{
5757
channel;
@@ -161,8 +161,8 @@ let generate_issue_notification notification channel =
161161
)
162162
in
163163
let summary =
164-
sprintf "<%s|[%s]> Issue #%d <%s|%s> %s by *%s*" repository.url repository.full_name number html_url (escape title) action
165-
sender.login
164+
sprintf "<%s|[%s]> Issue #%d <%s|%s> %s by *%s*" repository.url repository.full_name number html_url (escape title)
165+
action sender.login
166166
in
167167
{
168168
channel;
@@ -343,7 +343,8 @@ let generate_commit_comment_notification api_commit notification channel =
343343
in
344344
let summary =
345345
sprintf "<%s|[%s]> *%s* commented on `<%s|%s>` %s" repository.url repository.full_name sender.login comment.html_url
346-
(git_short_sha_hash commit_id) (first_line (escape commit.message))
346+
(git_short_sha_hash commit_id)
347+
(first_line (escape commit.message))
347348
in
348349
let path =
349350
match comment.path with

0 commit comments

Comments
 (0)