From 5a54f9c0b24c09502a93b4411705b9cc2f93a35c Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 22 Sep 2025 20:14:35 -0500 Subject: [PATCH] good grief --- doNormal.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doNormal.go b/doNormal.go index b8271e3..71e08af 100644 --- a/doNormal.go +++ b/doNormal.go @@ -75,12 +75,15 @@ func checkNormalRepoState(repo *gitpb.Repo) error { log.Info("ABNORMAL: master branch name was blank in", repo.GetFullPath()) } if repo.GetMasterBranchName() == "" { + me.forge.VerifyBranchNames(repo) err = log.Errorf("master branch name blank") } if repo.GetDevelBranchName() == "" { + me.forge.VerifyBranchNames(repo) err = log.Errorf("devel branch name blank") } if repo.GetUserBranchName() == "" { + me.forge.VerifyBranchNames(repo) err = log.Errorf("user branch name blank") } if repo.GetGoPath() == repo.GetNamespace() {