Skip to content

Commit

Permalink
fix: fix orgRecentPushes query
Browse files Browse the repository at this point in the history
  • Loading branch information
bashbunni committed Jul 16, 2024
1 parent 01dafd4 commit 4615477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repos.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ func orgRecentPushes(owner string, count int) []Repo {
Edges []struct {
Node qlRepository
}
} `graphql:"repositories(first: $count, privacy: PUBLIC, orderBy: {field: STARGAZERS, direction: DESC})"`
} `graphql:"repositories(first: $count, privacy: PUBLIC, orderBy: {field: PUSHED_AT, direction: DESC})"`
} `graphql:"organization(login: $owner)"`
}
fmt.Printf("Finding repos with recent pushes in the %s org\n", owner)
Expand Down

0 comments on commit 4615477

Please sign in to comment.