diff --git a/.github/scripts/fetch_readmes.js b/.github/scripts/fetch_readmes.js index 5591bc0..ad5ff69 100644 --- a/.github/scripts/fetch_readmes.js +++ b/.github/scripts/fetch_readmes.js @@ -137,15 +137,13 @@ function appendRepoInfoToMainReadme() { if (repoData.sigs && repoData.sigs.length > 0) { newSectionContent += `\n **Special Interest Groups (SIGs):**\n`; - newSectionContent += `\n Join us in the following SIGs:\n`; repoData.sigs.forEach(sig => { newSectionContent += `- [${sig.name}](${sig.url})\n`; }); } if (repoData.projects && repoData.projects.length > 0) { - newSectionContent += `**Projects:**\n`; - newSectionContent += `\n Join us in the following Projects:\n`; + newSectionContent += `\n **Projects:**\n`; repoData.projects.forEach(project => { newSectionContent += `- [${project.name}](${project.url})\n`; }); @@ -187,8 +185,7 @@ async function fetchReadmes() { } } - appendRepoInfoToMainReadme(); } -appendRepoInfoToMainReadme(); //fetchReadmes(); +appendRepoInfoToMainReadme();