diff options
Diffstat (limited to 'bridge/github/config.go')
-rw-r--r-- | bridge/github/config.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bridge/github/config.go b/bridge/github/config.go index 434a2c63..e76a14f4 100644 --- a/bridge/github/config.go +++ b/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 } |