skip readonly for unrelease

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-02-06 04:03:42 -06:00
parent a0f5c25e2f
commit f7bcde226f
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ import (
func findUnreleased() bool {
for _, repo := range me.allrepos {
if repo.status.ReadOnly() {
log.Info("skipping readonly", repo.String())
continue
}
if whitelist(repo.String()) {
log.Info("skipping whitelist", repo.String())
continue