aboutsummaryrefslogtreecommitdiffstats
path: root/routers/api/actions/runner/runner.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/api/actions/runner/runner.go')
-rw-r--r--routers/api/actions/runner/runner.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/actions/runner/runner.go b/routers/api/actions/runner/runner.go
index 8f365cc926..c55b30f7eb 100644
--- a/routers/api/actions/runner/runner.go
+++ b/routers/api/actions/runner/runner.go
@@ -69,7 +69,7 @@ func (s *Service) Register(
labels := req.Msg.Labels
// create new runner
- name, _ := util.SplitStringAtByteN(req.Msg.Name, 255)
+ name := util.EllipsisDisplayString(req.Msg.Name, 255)
runner := &actions_model.ActionRunner{
UUID: gouuid.New().String(),
Name: name,