Skip to content

Commit

Permalink
link to component folder instead of metadata.yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaLanziani committed Jun 10, 2024
1 parent bed0aa9 commit 92e7a61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scripts/generate-weekly-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ function generateComponentsLookingForOwnersReportSection(lookingForOwners) {
section.push(`<details>
<summary> ${componetType}: ${Object.keys(components).length} </summary>\n`);

for (const [component, path] of Object.entries(components)) {
section.push(`- [ ] [${component}](../blob/master/${path}) `)
for (const [componentName, metadatafilePath] of Object.entries(components)) {
section.push(`- [ ] [${componentName}](${path.join("../blob/master/", path.dirname(metadatafilePath))}) `)
}

section.push(`</details>`)
Expand Down

0 comments on commit 92e7a61

Please sign in to comment.