Skip to content

Commit

Permalink
better title label
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinslin committed Sep 12, 2023
1 parent c14d4a9 commit c783994
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/generate-weekly-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,7 @@ jobs:
for (const lbl of Object.keys(issuesData)) {
const section = [];
const title = lbl;
const {count, data} = issuesData[lbl];
const {count, data, title} = issuesData[lbl];
section.push(`<li> ${title}: ${count}`);
section.push(`<details>
<summary> Issues </summary>
Expand All @@ -205,5 +204,5 @@ jobs:
const report = generateReport({issuesData})
console.log(report)
}
await main({github, context})

0 comments on commit c783994

Please sign in to comment.