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 f268f3b commit 6155dc5Copy full SHA for 6155dc5
cmd/vulnreport/creator.go
@@ -77,6 +77,12 @@ func skip(iss *issues.Issue, x *xrefer) string {
77
return "suggested edit"
78
}
79
80
+ // indicates that there is already a report for this
81
+ // vuln but the report needs to be updated
82
+ if iss.HasLabel(labelNeedsAlias) {
83
+ return "existing report needs alias"
84
+ }
85
+
86
if iss.HasLabel(labelPossibleDuplicate) {
87
return "possible duplicate"
88
@@ -242,6 +248,7 @@ const (
242
248
labelDuplicate = "duplicate"
243
249
labelDirect = "Direct External Report"
244
250
labelSuggestedEdit = "Suggested Edit"
251
+ labelNeedsAlias = "NeedsAlias"
245
252
labelTriaged = "triaged"
246
253
labelHighPriority = "high priority"
247
254
labelFirstParty = "first party"
0 commit comments