Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .codeowners
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# For now, Hans reviews everything
* @BakerNet
codeowners.toml @zbedforrest
* @BakerNet @zbedforrest
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Code Ownership & Review Assignment Tool - GitHub CODEOWNERS but better

[![Go Report Card](https://goreportcard.com/badge/github.com/multimediallc/codeowners-plus)](https://goreportcard.com/report/github.com/multimediallc/codeowners-plus?kill_cache=1)
[![Tests](https://github.com/multimediallc/codeowners-plus/actions/workflows/go.yml/badge.svg)](https://github.com/multimediallc/codeowners-plus/actions/workflows/go.yml)
![Coverage](https://img.shields.io/badge/Coverage-83.0%25-brightgreen)
![Coverage](https://img.shields.io/badge/Coverage-83.1%25-brightgreen)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md)

Expand Down
2 changes: 1 addition & 1 deletion internal/github/gh.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (gh *GHClient) approvals() []*github.PullRequestReview {
if _, ok := seen[userName]; ok {
// we only care about the most recent reviews for each user
return false
} else {
} else if approval.GetState() == "APPROVED" {
seen[userName] = true
}
return approval.GetState() == "APPROVED"
Expand Down