patchpilots 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -210,6 +210,10 @@ function formatFooter(result) {
|
|
|
210
210
|
`<sub>Generated by <a href="https://github.com/alavesa/patchpilots">PatchPilots</a> ` +
|
|
211
211
|
`| ${result.totalFindings || 0} findings | ${result.totalPatches || 0} patches | risk: ${result.riskScore || "none"}</sub>`
|
|
212
212
|
);
|
|
213
|
+
lines.push("");
|
|
214
|
+
lines.push(
|
|
215
|
+
`<sub>Add <a href="https://github.com/alavesa/patchpilots"><img src="https://img.shields.io/badge/reviewed%20by-PatchPilots-blue" alt="Reviewed by PatchPilots" /></a> to your README</sub>`
|
|
216
|
+
);
|
|
213
217
|
return lines.join("\n");
|
|
214
218
|
}
|
|
215
219
|
|