From 2a0ee526544c43b257b8b0df9bf65d4772fea75b Mon Sep 17 00:00:00 2001 From: okseby Date: Mon, 28 Aug 2023 23:23:37 -0400 Subject: [PATCH] Change emojis on successful merge --- bot/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/utils.go b/bot/utils.go index cd1837b..4d968be 100644 --- a/bot/utils.go +++ b/bot/utils.go @@ -136,7 +136,7 @@ func processIssueCommentEvent(event *github.IssueCommentEvent) { // Respond with a comment comment := &github.IssueComment{ - Body: github.String("Merging based on reactions :fireworks:"), + Body: github.String("Merging based on reactions :heavy_check_mark: :rocket:"), } _, _, err := client.Issues.CreateComment(ctx, owner, repo, prNumber, comment)