We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82c06dc commit fa9ad75Copy full SHA for fa9ad75
1 file changed
main.ts
@@ -107,12 +107,18 @@ async function check_severity_findings(
107
108
const findings_data = await findings_response.json();
109
const count = findings_data.pagination_info?.total_count || 0;
110
+ // print raw fidings data for debugging
111
+ console.log(
112
+ `Found ${count} ${severity} severity findings (results_since: ${effective_results_since})`,
113
+ );
114
+ console.log(`Findings data: ${JSON.stringify(findings_data)}`);
115
+
116
total_findings += count;
117
+ }
118
119
if (count > 0) {
120
return { has_findings: true, total_count: total_findings };
121
}
- }
122
123
return { has_findings: false, total_count: 0 };
124
0 commit comments