From 4af4d5d1a085d37ca7f3bef9686513c0974cc3ff Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Tue, 7 Jul 2026 02:32:41 -0400 Subject: [PATCH] Sort in ascending order so the last updated ones end up last updated in the ggv org --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index dfff16c..4753823 100644 --- a/main.go +++ b/main.go @@ -39,7 +39,7 @@ func main() { os.Exit(0) } baseURL := os.Args[1] - apiURL := baseURL + "/api/v1/repos/search?sort=updated&order=desc&limit=999" + apiURL := baseURL + "/api/v1/repos/search?sort=updated&order=asc&limit=999" username := os.Args[2] var organization string if len(os.Args) == 4 {