We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1380929 commit 4d82765Copy full SHA for 4d82765
1 file changed
script/i18n/report-reset-files.js
@@ -66,9 +66,10 @@ function pullRequestBodyReport() {
66
.forEach((reason) => {
67
const files = filesByReason[reason]
68
body.push(`\n### ${reason}`)
69
- body.push(`\n${files.length} files:\n`)
+ body.push(`\n<details><summary>${files.length} files:</summary>\n`)
70
const checkBoxes = files.map((file) => `- [ ] ${file}`)
71
body.push(checkBoxes)
72
+ body.push('\n</details>')
73
})
74
75
return body.flat().join('\n')
0 commit comments