Use the correct name for allowlists.

This commit is contained in:
Federico Builes
2022-06-14 09:46:59 +02:00
parent b0e1f384d7
commit f83a407eb9
4 changed files with 6 additions and 6 deletions
Generated Vendored
+1 -1
View File
@@ -13699,7 +13699,7 @@ function readConfig() {
let options = {};
// By default we want to fail on all severities and allow all licenses.
const severity = core.getInput('fail-on-severity') || 'low';
const allowedLicenses = core.getInput('allowed-licenses');
const allowedLicenses = core.getInput('allow-licenses');
const denyLicenses = core.getInput('deny-licenses');
options.fail_on_severity = severity.toLowerCase();
if (allowedLicenses.length > 0) {
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long