about summary refs log tree commit diff
path: root/ops/besadii/main.go
diff options
context:
space:
mode:
authorÅsmund Østvold <asmundo@gmail.com>2022-01-07T11·57+0100
committerasmundo <asmundo@gmail.com>2022-01-12T09·37+0000
commitd4b997d832b5ba14f31c4a41a9e2555d8a6f7af4 (patch)
treef705fcd7f6aeeab680baf7939fbf71add29512d6 /ops/besadii/main.go
parentdc9fe837a91ea616529d2ba74d832a7a25aee208 (diff)
fix(ops/besadii) no need to ref CL number in post to Gerrit r/3585
The comment posted to the Gerrit change do not need to contain the CL
number as it is given by the context of the Gerrit UI.

Change-Id: I172645e7f4d82e2fbebe179578babd42ea29737f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4826
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: asmundo <asmundo@gmail.com>
Diffstat (limited to 'ops/besadii/main.go')
-rw-r--r--ops/besadii/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/besadii/main.go b/ops/besadii/main.go
index 685e8d2f83..39c7084a30 100644
--- a/ops/besadii/main.go
+++ b/ops/besadii/main.go
@@ -267,7 +267,7 @@ func triggerBuild(cfg *config, log *syslog.Writer, trigger *buildTrigger) error
 
 	// Report the status back to the Gerrit CL so that users can click
 	// through to the running build.
-	msg := fmt.Sprintf("Started build for patchset #%s of cl/%s: %s", trigger.patchset, trigger.changeId, buildResp.WebUrl)
+	msg := fmt.Sprintf("Started build for patchset #%s on: %s", trigger.patchset, buildResp.WebUrl)
 	review := reviewInput{
 		Message:               msg,
 		OmitDuplicateComments: true,