mark pr open if we have no branches

This commit is contained in:
Aaron Bieber 2023-05-26 09:28:46 -06:00
parent f90ff09784
commit 92cdbdb8a9
No known key found for this signature in database

View File

@ -107,6 +107,7 @@ sub figure_status {
} }
$status->{state} = "complete" if $dataLen == $trueCount; $status->{state} = "complete" if $dataLen == $trueCount;
$status->{state} = "open" if @{$list} == 0;
return ( $release, $status ); return ( $release, $status );
} }