use bounded goroutine group in commit search
Created by: camdencheek
TIL about the goroutine.Bounded
helper, which solves the early-cancellation problem I often face with the more standard errgroup
. This is the reason I didn't use an errorgroup with commit search, so I cleaned it up a smidge by switching to this.