We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c1dce commit a54500eCopy full SHA for a54500e
internal/github/gh.go
@@ -162,7 +162,7 @@ func (gh *GHClient) approvals() []*github.PullRequestReview {
162
if _, ok := seen[userName]; ok {
163
// we only care about the most recent reviews for each user
164
return false
165
- } else {
+ } else if approval.GetState() == "APPROVED" {
166
seen[userName] = true
167
}
168
return approval.GetState() == "APPROVED"
0 commit comments