From 171efe55c564e29f328a0e40f9f69f63ff0d6a33 Mon Sep 17 00:00:00 2001 From: Christopher Homberger Date: Mon, 17 Mar 2025 21:59:18 +0100 Subject: [PATCH] update context with name --- services/actions/notifier.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/actions/notifier.go b/services/actions/notifier.go index 57990a4e99..258bd80fad 100644 --- a/services/actions/notifier.go +++ b/services/actions/notifier.go @@ -768,6 +768,8 @@ func (n *actionsNotifier) MigrateRepository(ctx context.Context, doer, u *user_m } func (n *actionsNotifier) WorkflowRunStatusUpdate(ctx context.Context, repo *repo_model.Repository, sender *user_model.User, run *actions_model.ActionRun) { + ctx = withMethod(ctx, "WorkflowRunStatusUpdate") + var org *api.Organization if repo.Owner.IsOrganization() { org = convert.ToOrganization(ctx, organization.OrgFromUser(repo.Owner))