skip empty pull requests (#17) (#18)

Signed-off-by: Andreas Ulm <andreas.ulm@root360.de>
remotes/root360-AndreasUlm/16_improve_installation
Andreas Ulm 5 years ago committed by Lauris BH
parent fb52920af9
commit 3713949934

@ -49,6 +49,9 @@ func runPulls(ctx *cli.Context) error {
}
for _, pr := range prs {
if pr == nil {
continue
}
name := pr.Poster.FullName
if len(name) == 0 {
name = pr.Poster.UserName

Loading…
Cancel
Save