Merge pull request #43 from rowbawts/dev

Ok now remove logging for the last time (hopefully)
This commit is contained in:
Sebastian Cabrera 2023-08-29 21:56:59 -04:00 committed by GitHub
commit 422bbd7cba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,7 +163,6 @@ func processIssueCommentEvent(event *github.IssueCommentEvent) {
return
}
log.Println(approvals)
}
}
@ -224,7 +223,5 @@ 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!")
}
}