diff --git a/services/actions/workflow.go b/services/actions/workflow.go
index e9dc3215c5..ef28591654 100644
--- a/services/actions/workflow.go
+++ b/services/actions/workflow.go
@@ -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