fix(ops/besadii): fix Gerrit URL format ... again
got into some kind of race with different patchsets of this CL somehow, idk Change-Id: I3dcdb708f141829b866fbd786483710b43ea9824 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4481 Autosubmit: tazjin <mail@tazj.in> Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
This commit is contained in:
parent
1d4715781c
commit
eea2dbadd0
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ func loadConfig() (*config, error) {
|
|||
|
||||
// linkToChange creates the full link to a change's patchset in Gerrit
|
||||
func linkToChange(cfg *config, changeId, patchset string) string {
|
||||
return fmt.Sprintf("%s/c/%s/+/%s/%s", cfg.GerritUrl, "c", cfg.Repository, "+", changeId, patchset)
|
||||
return fmt.Sprintf("%s/c/%s/+/%s/%s", cfg.GerritUrl, cfg.Repository, changeId, patchset)
|
||||
}
|
||||
|
||||
// updateGerrit posts a comment on a Gerrit CL to indicate the current build status.
|
||||
|
|
Loading…
Reference in a new issue