Skip to content

Commit

Permalink
adding sigs and projects
Browse files Browse the repository at this point in the history
  • Loading branch information
hythloda authored Dec 29, 2023
1 parent 5375c6c commit 051193a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/scripts/fetch_readmes.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
});
Expand Down Expand Up @@ -187,8 +185,7 @@ async function fetchReadmes() {
}
}

appendRepoInfoToMainReadme();
}
appendRepoInfoToMainReadme();
//fetchReadmes();
appendRepoInfoToMainReadme();

0 comments on commit 051193a

Please sign in to comment.