diff --git a/Library/Homebrew/dev-cmd/contributions.rb b/Library/Homebrew/dev-cmd/contributions.rb index 783c645f1bd4ab..14dd3fc1482bc6 100755 --- a/Library/Homebrew/dev-cmd/contributions.rb +++ b/Library/Homebrew/dev-cmd/contributions.rb @@ -175,7 +175,14 @@ def scan_repositories(repos, person, args) commits: GitHub.repo_commit_count_for_user(repo_full_name, person, args), coauthorships: git_log_trailers_cmd(T.must(repo_path), person, "Co-authored-by", args), signoffs: git_log_trailers_cmd(T.must(repo_path), person, "Signed-off-by", args), - reviews: GitHub.count_issues("", is: "pr", repo: repo_full_name, reviewed_by: person, args: args), + reviews: GitHub.count_issues( + "", + is: "pr", + repo: repo_full_name, + reviewed_by: person, + review: "approved", + args: args, + ), } end