Ignore empty repo for CreateRepository in action notifier (#29416)

Fix #29415

(cherry picked from commit 403766cd81697288804fd218d68c458c6aa5b73d)
This commit is contained in:
yp05327 2024-02-26 18:38:15 +09:00 committed by Earl Warren
parent 480c61432a
commit 76070599f9
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 0579CB2928A78A00

View file

@ -117,6 +117,9 @@ func notify(ctx context.Context, input *notifyInput) error {
log.Debug("ignore executing %v for event %v whose doer is %v", getMethod(ctx), input.Event, input.Doer.Name)
return nil
}
if input.Repo.IsEmpty {
return nil
}
if unit_model.TypeActions.UnitGlobalDisabled() {
return nil
}