|
|
|
@ -86,16 +86,12 @@ function writeFeedToFile(
|
|
|
|
|
core.debug(`Found a URL with key ${key}`);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
if (
|
|
|
|
|
packageSources['@_value']
|
|
|
|
|
.toLowerCase()
|
|
|
|
|
.includes(feedUrl.toLowerCase())
|
|
|
|
|
) {
|
|
|
|
|
const key = packageSources['@_key'];
|
|
|
|
|
sourceKeys.push(key);
|
|
|
|
|
core.debug(`Found a URL with key ${key}`);
|
|
|
|
|
}
|
|
|
|
|
} else if (
|
|
|
|
|
packageSources['@_value'].toLowerCase().includes(feedUrl.toLowerCase())
|
|
|
|
|
) {
|
|
|
|
|
const key = packageSources['@_key'];
|
|
|
|
|
sourceKeys.push(key);
|
|
|
|
|
core.debug(`Found a URL with key ${key}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|