From 3da503665170f14ee4c8cb8e507e35b73a9fd521 Mon Sep 17 00:00:00 2001 From: CD Cabrera Date: Tue, 12 May 2026 21:35:49 -0400 Subject: [PATCH 1/2] dev: fix --- bin/t2.js | 1 + 1 file changed, 1 insertion(+) 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(); From ad7101e9fc962695d2a0ef8ba8b4c8f02edf2c64 Mon Sep 17 00:00:00 2001 From: CD Cabrera Date: Tue, 12 May 2026 21:39:26 -0400 Subject: [PATCH 2/2] dev: fail everything --- scripts/workflow.preCheck.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;