Update add-to-project.ts

This commit is contained in:
Anthony Laye
2022-06-16 11:37:48 -04:00
committed by GitHub
parent fcb780e2b5
commit f7823161aa

View File

@@ -57,7 +57,7 @@ export async function addToProject(): Promise<void> {
}
} else if (labelOperator === 'not') {
if (labeled.length > 0 && issueLabels.some(l => labeled.includes(l))) {
core.info(`Skipping issue $(issue?.number} because it contains one of the labels: $(labeled.join(', ')}`)
core.info(`Skipping issue ${issue?.number} because it contains one of the labels: $(labeled.join(', ')}`)
return
}
}