in pkg/review/header.go [260:290]
func Markdown(result *header2.Result) string {
return fmt.Sprintf(`
<!-- %s -->
[license-eye](https://github.com/apache/skywalking-eyes/tree/main/cmd/license-eye) has checked %d files.
| Valid | Invalid | Ignored | Fixed |
| --- | --- | --- | --- |
| %d | %d | %d | %d |
<details>
<summary>Click to see the invalid file list</summary>
%v
</details>
<details>
<summary>Use this command to fix any missing license headers</summary>
`+"```bash\n"+
"docker run -it --rm -v $(pwd):/github/workspace apache/skywalking-eyes header fix\n"+
"```"+
`
</details>
`,
Identification,
len(result.Success)+len(result.Failure)+len(result.Ignored),
len(result.Success),
len(result.Failure),
len(result.Ignored),
len(result.Fixed),
"- "+strings.Join(result.Failure, "\n- "),
)
}