···779 return
780 }
781782- hiddenRef := url.QueryEscape(fmt.Sprintf("hidden/%s/%s", sourceBranch, targetBranch))
783 // We're now comparing the sourceBranch (on the fork) against the hiddenRef which is tracking
784 // the targetBranch on the target repository. This code is a bit confusing, but here's an example:
785 // hiddenRef: hidden/feature-1/main (on repo-fork)
···779 return
780 }
781782+ hiddenRef := fmt.Sprintf("hidden/%s/%s", sourceBranch, targetBranch)
783 // We're now comparing the sourceBranch (on the fork) against the hiddenRef which is tracking
784 // the targetBranch on the target repository. This code is a bit confusing, but here's an example:
785 // hiddenRef: hidden/feature-1/main (on repo-fork)