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 fa513ee commit 67fedf9Copy full SHA for 67fedf9
lib/prepare_security.js
@@ -78,7 +78,7 @@ class SecurityReleaseIssue {
78
let reportsContent = '';
79
for (const report of reports.data) {
80
const { id, attributes: { title }, relationships: { severity } } = report;
81
- const reportLevel = severity.data.attributes.rating;
+ const reportLevel = severity ? severity.data.attributes.rating : 'TBD';
82
cli.separator();
83
cli.info(`Report: ${id} - ${title} (${reportLevel})`);
84
const include = await cli.prompt(
0 commit comments