Skip to content

Commit

Permalink
repos list sorted by created date
Browse files Browse the repository at this point in the history
  • Loading branch information
darsan-in committed Aug 4, 2024
1 parent 5001a96 commit f8a534a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action/dist/fetch-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async function getReposMeta(username) {
username: username,
type: "all",
per_page: 100,
sort: "pushed",
sort: "created",
});
const parsedData = data.map((repoMeta) => {
return parseRepoMeta(repoMeta);
Expand Down
2 changes: 1 addition & 1 deletion action/fetch-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ async function getReposMeta(username: string): Promise<GithubRepoMeta[]> {
username: username,
type: "all",
per_page: 100,
sort: "pushed",
sort: "created",
});

const parsedData: GithubRepoMeta[] = data.map((repoMeta: any) => {
Expand Down

0 comments on commit f8a534a

Please sign in to comment.