Change emojis on successful merge

This commit is contained in:
Sebastian Cabrera 2023-08-28 23:23:37 -04:00
parent 40b64a43ef
commit 2a0ee52654

View file

@ -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)