From 47409b2fa044df6f4342181e8f4ee08f9964bc2e Mon Sep 17 00:00:00 2001 From: Giteabot Date: Mon, 26 Feb 2024 17:59:12 +0800 Subject: [PATCH] Ignore empty repo for CreateRepository in action notifier (#29416) (#29424) Backport #29416 by @yp05327 Fix #29415 Co-authored-by: yp05327 <576951401@qq.com> (cherry picked from commit c758a8afba85fe1847f4d1f5441f6c62b37517ae) --- services/actions/notifier_helper.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/actions/notifier_helper.go b/services/actions/notifier_helper.go index 26c86275e9..15fd419e87 100644 --- a/services/actions/notifier_helper.go +++ b/services/actions/notifier_helper.go @@ -114,6 +114,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 }