From c99925abb3a25f1bfd8708817e24cf32913a8a37 Mon Sep 17 00:00:00 2001 From: justusbunsi <61625851+justusbunsi@users.noreply.github.com> Date: Sun, 10 Oct 2021 16:29:29 +0200 Subject: [PATCH] Fix URL for status Signed-off-by: Steven Kriegler <61625851+justusbunsi@users.noreply.github.com> --- internal/clients/gitea/gitea.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/clients/gitea/gitea.go b/internal/clients/gitea/gitea.go index e8d345e..29dca72 100644 --- a/internal/clients/gitea/gitea.go +++ b/internal/clients/gitea/gitea.go @@ -36,8 +36,6 @@ func (sdk *GiteaSdk) UpdateStatus(repo settings.GiteaRepository, ref string, det State: gitea.StatusState(details.State), } - opt.TargetURL = "gitea-sonarqube-pr-bot" - _, _, err := sdk.client.CreateStatus(repo.Owner, repo.Name, ref, opt) if err != nil { log.Printf("Error updating status: %s", err.Error())