diff options
author | Åsmund Østvold <asmundo@gmail.com> | 2022-01-07T11·57+0100 |
---|---|---|
committer | asmundo <asmundo@gmail.com> | 2022-01-12T09·37+0000 |
commit | d4b997d832b5ba14f31c4a41a9e2555d8a6f7af4 (patch) | |
tree | f705fcd7f6aeeab680baf7939fbf71add29512d6 /ops/besadii/main.go | |
parent | dc9fe837a91ea616529d2ba74d832a7a25aee208 (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.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/besadii/main.go b/ops/besadii/main.go index 685e8d2f8304..39c7084a3022 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, |