We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b695434 commit 3454630Copy full SHA for 3454630
generateIndex.js
@@ -11,6 +11,7 @@ async function getRepos(url) {
11
if (!response.ok) throw new Error("Failed to fetch repositories");
12
const repos = await response.json();
13
return repos.map(repo => ({
14
+ html_url: repo.html_url,
15
name: repo.name,
16
full_name: repo.full_name,
17
owner: repo.full_name.replace(`/${repo.name}`, ''),
0 commit comments