We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6ed25 commit 58d2376Copy full SHA for 58d2376
entrypoint.js
@@ -420,7 +420,8 @@ const processReport = function () {
420
severity: v.severity == 'Unknown' ? 'Information' : (v.severity || ''),
421
category: v.category || '',
422
identifier: (v.identifiers || []).map(i => i.type == 'cwe' ? undefined : i.value).filter(o => o),
423
- location: v.location.file.truncateLeft(40)
+ location: v.location.file.truncateLeft(40),
424
+ lines: `${v.location.start_line}/${v.location.end_line}`
425
}
426
}))
427
if (securityServerity.critical || securityServerity.high) {
0 commit comments