diff --git a/bin/t2.js b/bin/t2.js index 0c95028..53d00eb 100755 --- a/bin/t2.js +++ b/bin/t2.js @@ -17,4 +17,5 @@ const doIt = () => { console.log(`t1: ${output.join(', ')}`); }; // comment change +// another comment doIt(); diff --git a/scripts/workflow.preCheck.js b/scripts/workflow.preCheck.js index 3e9f75b..39ac846 100644 --- a/scripts/workflow.preCheck.js +++ b/scripts/workflow.preCheck.js @@ -135,14 +135,14 @@ const signatureScan = ({ description, files, fileCount } = {}) => { ]; try { - const isMaxFilesUpdated = typeof fileCount === 'number' ? fileCount > fileChangeLimit : undefined; + const isMaxFilesUpdated = true; // typeof fileCount === 'number' ? fileCount > fileChangeLimit : undefined; const isPrTemplateModified = true; // typeof description === 'string' ? description.includes(prTemplateStr) === false : undefined; const coreModified = doesListContainAnotherListValues(files, coreList); const isCoreModified = true; // coreModified.length > 0; const genModified = doesListContainAnotherListValues(files, genList); - const isGenModified = genModified.length > 0; + const isGenModified = true; // genModified.length > 0; const secModified = doesListContainAnotherListValues(files, secList); const isSecModified = secModified.length > 0;