🦸🏻 Added metron service

This commit is contained in:
2022-01-04 07:39:00 -08:00
parent ba31650543
commit 4d1b4ceb71
3 changed files with 51 additions and 81 deletions

View File

@@ -133,7 +133,7 @@ export const rankVolumes = (volumes: any, scorerConfiguration: any) => {
volumeMatchScore += 3;
}
}
if(issueNameMatchScore > 0.2 && volumeMatchScore > 2) {
if(issueNameMatchScore > 0.5 && volumeMatchScore > 2) {
console.log(`Found a match for criteria, volume ID: ${volume.id}`);
return volume.id;
}