From 326ae5d442b9774e844b6c70e1dbec80340fca94 Mon Sep 17 00:00:00 2001 From: Jason Song Date: Fri, 6 Jan 2023 13:51:40 +0800 Subject: [PATCH] fix: keep original commit message --- services/actions/notifier_helper.go | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/services/actions/notifier_helper.go b/services/actions/notifier_helper.go index 012e95fde2..816b816acf 100644 --- a/services/actions/notifier_helper.go +++ b/services/actions/notifier_helper.go @@ -21,7 +21,6 @@ import ( "code.gitea.io/gitea/modules/json" "code.gitea.io/gitea/modules/log" api "code.gitea.io/gitea/modules/structs" - "code.gitea.io/gitea/modules/util" "code.gitea.io/gitea/services/convert" "github.com/nektos/act/pkg/jobparser" @@ -139,7 +138,7 @@ func notify(ctx context.Context, input *notifyInput) error { for id, content := range workflows { run := actions_model.ActionRun{ - Title: truncateContent(strings.SplitN(commit.CommitMessage, "\n", 2)[0], 255), + Title: strings.SplitN(commit.CommitMessage, "\n", 2)[0], RepoID: input.Repo.ID, OwnerID: input.Repo.OwnerID, WorkflowID: id, @@ -219,11 +218,3 @@ func notifyPackage(ctx context.Context, sender *user_model.User, pd *packages_mo }). Notify(ctx) } - -func truncateContent(content string, n int) string { - truncated, omitted := util.SplitStringAtByteN(content, n) - if omitted != "" { - truncated += "…" - } - return truncated -}