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 6cf9067 commit ce6986eCopy full SHA for ce6986e
componentDetection.ts
@@ -75,14 +75,13 @@ export default class ComponentDetection {
75
76
var json: any = JSON.parse(results);
77
json.componentsFound.forEach(async (component: any) => {
78
- // Add debug log to show components with missing packageUrl
+ // Skip components without packageUrl
79
if (!component.component.packageUrl) {
80
- core.debug(`Component detected without packageUrl: ${JSON.stringify({
+ core.debug(`Skipping component detected without packageUrl: ${JSON.stringify({
81
id: component.component.id,
82
name: component.component.name || 'unnamed',
83
type: component.component.type || 'unknown'
84
}, null, 2)}`);
85
- // Skip components without packageUrl
86
return;
87
}
88
0 commit comments