Still confused
This commit is contained in:
parent
21892a7c66
commit
8d9909e5ef
1 changed files with 3 additions and 1 deletions
|
@ -104,6 +104,8 @@ func processIssueCommentEvent(event *github.IssueCommentEvent) {
|
||||||
if strings.Contains(comment.GetBody(), "+1") {
|
if strings.Contains(comment.GetBody(), "+1") {
|
||||||
reactionCount++
|
reactionCount++
|
||||||
|
|
||||||
|
fmt.Println(comment.GetBody())
|
||||||
|
|
||||||
if reactionCount >= reactionCountGoal {
|
if reactionCount >= reactionCountGoal {
|
||||||
// Merge the pull request
|
// Merge the pull request
|
||||||
merge := &github.PullRequestOptions{
|
merge := &github.PullRequestOptions{
|
||||||
|
@ -114,7 +116,7 @@ func processIssueCommentEvent(event *github.IssueCommentEvent) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println("Error merging pull request:", err)
|
log.Println("Error merging pull request:", err)
|
||||||
} else {
|
} else {
|
||||||
log.Println("Pull request merged successfully")
|
log.Println("Pull request", prNumber, "merged successfully")
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue