From 7078df5464e865d5cf8881e323c1290d2a356e87 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 25 May 2023 03:46:57 -0600 Subject: [PATCH] Add branch prefix to mirror synced push results --- services/mirror/mirror_pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/mirror/mirror_pull.go b/services/mirror/mirror_pull.go index 60699294c18bd..6fa831f9b5399 100644 --- a/services/mirror/mirror_pull.go +++ b/services/mirror/mirror_pull.go @@ -143,7 +143,7 @@ func parseRemoteUpdateOutput(output string) []*mirrorSyncResult { continue } results = append(results, &mirrorSyncResult{ - refName: refName, + refName: git.BranchPrefix + refName, oldCommitID: shas[0], newCommitID: shas[1], })