From f989445a841671d6e40476c9d21fc0638dfeccc6 Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Fri, 13 May 2022 13:42:59 +0100 Subject: [PATCH] Update addrev to allow self-review on release Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/tools/pull/117) --- review-tools/gitaddrev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/review-tools/gitaddrev b/review-tools/gitaddrev index ebebfc1..8e5a421 100755 --- a/review-tools/gitaddrev +++ b/review-tools/gitaddrev @@ -58,7 +58,7 @@ sub try_add_reviewer { # $rc is made to hold and return the reviewer string if it's # valid to count that reviewer string. if (is_author($rev)) { - $rc = $rev if $min_authors > 0; + $rc = $rev if $min_authors > 0 || $release; } else { $rc = $rev; } -- 2.34.1