Opposed to the prs command the reviews command only supports a list of repos and not the --org option.
The prs command has special handling for this option:
var repos []string
if len(rootOpts.org) > 0 {
repos, err = repo.ListRepoNames(ctx, c, rootOpts.org)
} else {
repos = rootOpts.repos
}
Happy to provide a quick fix for this.
Opposed to the
prscommand thereviewscommand only supports a list of repos and not the--orgoption.The
prscommand has special handling for this option:Happy to provide a quick fix for this.