From 1a525b3a44b43c8d7ccaa7d51ebac2bc18ff036d Mon Sep 17 00:00:00 2001 From: dboyliao <6830390+dboyliao@users.noreply.github.com> Date: Sat, 3 Jan 2026 10:51:00 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20revision(xalign):=20add=20user?= =?UTF-8?q?=20info=20and=20timestamp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/strategy/xalign/slack.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkg/strategy/xalign/slack.go b/pkg/strategy/xalign/slack.go index 944a21c606..ccacf5d25b 100644 --- a/pkg/strategy/xalign/slack.go +++ b/pkg/strategy/xalign/slack.go @@ -245,7 +245,12 @@ func setupSlackInteractionCallback(slackEvtID string, dispatcher *interact.Inter PostInThread: false, }, { - Blocks: []slack.Block{buildTextBlock("*Order has been processed, cannot do any further actions.*")}, + Blocks: []slack.Block{buildTextBlock( + fmt.Sprintf( + "*Order has been processed, cannot do any further actions.* (requested by %s at %s)", + user.Name, + time.Now().Format(time.RFC3339), + ))}, Attachments: nil, PostInThread: true, },