2022-03-12 17:17:16 +08:00
|
|
|
import fs from 'fs/promises'
|
|
|
|
import path from 'path'
|
|
|
|
|
|
|
|
async function main() {
|
2024-05-03 21:43:47 +08:00
|
|
|
const threshold = Number(process.env.THRESHOLD) || 40
|
2022-03-12 17:17:16 +08:00
|
|
|
let output: string
|
|
|
|
const diffOutput = await fs.readFile(
|
|
|
|
path.resolve(__dirname, '..', 'tmp/diff.txt'),
|
|
|
|
'utf-8'
|
|
|
|
)
|
|
|
|
const fileDiffs = diffOutput
|
|
|
|
.split('\n')
|
|
|
|
.map((s) => s.trim())
|
|
|
|
.filter((s) => s)
|
|
|
|
.map((s) => s.split(':'))
|
|
|
|
|
|
|
|
if (fileDiffs.length === 0) {
|
|
|
|
output = ''
|
|
|
|
} else {
|
|
|
|
const table = fileDiffs.reduce(
|
|
|
|
(prev, [source, filename]) => {
|
|
|
|
const row = `|${filename}`
|
|
|
|
let status: 'Added 🟢' | 'Removed ⛔️'
|
|
|
|
if (!source.startsWith('./dist')) {
|
|
|
|
status = 'Removed ⛔️'
|
|
|
|
} else {
|
|
|
|
status = 'Added 🟢'
|
|
|
|
}
|
|
|
|
return `${prev}
|
|
|
|
${row}|${status}|`
|
|
|
|
},
|
|
|
|
`| Filename | Status |
|
|
|
|
|:---|:---:|`
|
|
|
|
)
|
|
|
|
|
|
|
|
output = `**Total changed files:** ${fileDiffs.length}
|
|
|
|
|
2022-03-12 19:03:28 +08:00
|
|
|
${
|
|
|
|
fileDiffs.length >= threshold
|
|
|
|
? `#### 🚔 Attention: the changed file has exceeded the threshold`
|
|
|
|
: ''
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:17:16 +08:00
|
|
|
<details><summary>:information_source: Files have been changed</summary>
|
|
|
|
|
|
|
|
${table}
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
<sub>Generated with :heart: by Element Plus bot</sub>`
|
|
|
|
}
|
|
|
|
|
|
|
|
await fs.writeFile(path.resolve(__dirname, '..', 'tmp/diff.md'), output)
|
|
|
|
}
|
2022-04-09 04:32:01 +08:00
|
|
|
|
|
|
|
main()
|