skip readonly for unrelease
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
a0f5c25e2f
commit
f7bcde226f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue