Skip to content

Commit c7ae39b

Browse files
authored
[chore][Weekly Report] Remove duplicate information (#32934)
**Description:** <Describe what has changed.> <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> The weekly report is currently broken because it's trying to make requests with too large of a body. The section removed here is data the is already included in the previous sections of the report, just in less structured format, directly in JSON. I don't think this has a lot of value, so it can be removed for the sake of getting the rest of the data. This will remove the `JSON Data` section of previous [weekly reports](#32407). **Link to tracking Issue:** <Issue number if applicable> Fixes #32655 **Testing:** <Describe what testing was performed and which tests were added.> I haven't been able to test this, but the weekly report is currently broken and is only run once a week, so I don't think this could break it worse.
1 parent 7ef91f9 commit c7ae39b

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

.github/workflows/scripts/generate-weekly-report.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -240,19 +240,6 @@ function generateReport({ issuesData, previousReport, componentData }) {
240240
}
241241
out.push('</ul>');
242242

243-
// add json data
244-
out.push('\n ## JSON Data');
245-
out.push('<!-- MACHINE GENERATED: DO NOT EDIT -->');
246-
out.push(`<details>
247-
<summary>Expand</summary>
248-
<pre>
249-
{
250-
"issuesData": ${JSON.stringify(issuesData, null, 2)},
251-
"componentData": ${JSON.stringify(componentData, null, 2)}
252-
}
253-
</pre>
254-
</details>`);
255-
const report = out.join('\n');
256243
return report;
257244
}
258245

0 commit comments

Comments
 (0)