bridge/github/config.go 🔗
@@ -11,6 +11,7 @@ import (
"net/http"
"os"
"regexp"
+ "sort"
"strconv"
"strings"
"syscall"
@@ -471,6 +472,8 @@ func getValidGithubRemoteURLs(remotes map[string]string) []string {
}
}
+ sort.Strings(urls)
+
return urls
}