commit missing notifier rename

This commit is contained in:
Christopher Homberger 2025-03-05 13:21:23 +01:00
parent 7b4a23004c
commit dfbf18cc4a

View File

@ -25,7 +25,7 @@ import (
"code.gitea.io/gitea/modules/util"
"code.gitea.io/gitea/services/context"
"code.gitea.io/gitea/services/convert"
notifier "code.gitea.io/gitea/services/notify"
notify_service "code.gitea.io/gitea/services/notify"
"github.com/nektos/act/pkg/jobparser"
"github.com/nektos/act/pkg/model"
@ -278,7 +278,7 @@ func DispatchActionWorkflow(ctx reqctx.RequestContext, doer *user_model.User, re
}
CreateCommitStatus(ctx, allJobs...)
for _, job := range allJobs {
notifier.WorkflowJobStatusUpdate(ctx, repo, doer, job, nil)
notify_service.WorkflowJobStatusUpdate(ctx, repo, doer, job, nil)
}
return nil