Re-add debug logging as I'm dumb and want to make sure this is working

This commit is contained in:
Sebastian Cabrera 2023-08-29 21:54:11 -04:00
parent f5bcc381aa
commit bd9ca3318d

View file

@ -163,6 +163,7 @@ func processIssueCommentEvent(event *github.IssueCommentEvent) {
return
}
log.Println(approvals)
}
}
@ -223,5 +224,7 @@ func processPullRequestEvent(event *github.PullRequestEvent) {
}
} else if event.GetAction() == "merged" {
delete(approvals, prNumber)
log.Println(approvals)
log.Println("Pull request #", prNumber, "removed from approval list due to merge!")
}
}