From ed33170e127da2257398e98dbf4fc81093e0affd Mon Sep 17 00:00:00 2001 From: CD Cabrera Date: Mon, 11 May 2026 14:51:06 -0400 Subject: [PATCH 1/4] fix: mod --- 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 d591f28..ae54f5d 100644 --- a/scripts/workflow.preCheck.js +++ b/scripts/workflow.preCheck.js @@ -16,8 +16,8 @@ import fs from 'node:fs'; */ const coreContributors = ({ author, authorType, authorRole } = {}, { allowBots = true, allowMaintainers = true } = {}) => { const bots = ['Bot', 'dependabot[bot]']; - const contributors = []; - const codeOwnersPaths = []; + const contributors = ['OWNER']; + const codeOwnersPaths = ['.github/CODEOWNERS', 'CODEOWNERS']; const isBot = allowBots && (bots.includes(authorType) || bots.includes(author)); const isMaintainer = allowMaintainers && contributors.includes(authorRole); From 2864d02b4ce25dfdafc7fcca73964ee8c740868b Mon Sep 17 00:00:00 2001 From: CD Cabrera Date: Mon, 11 May 2026 14:54:12 -0400 Subject: [PATCH 2/4] fix: rollout --- 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 ae54f5d..d591f28 100644 --- a/scripts/workflow.preCheck.js +++ b/scripts/workflow.preCheck.js @@ -16,8 +16,8 @@ import fs from 'node:fs'; */ const coreContributors = ({ author, authorType, authorRole } = {}, { allowBots = true, allowMaintainers = true } = {}) => { const bots = ['Bot', 'dependabot[bot]']; - const contributors = ['OWNER']; - const codeOwnersPaths = ['.github/CODEOWNERS', 'CODEOWNERS']; + const contributors = []; + const codeOwnersPaths = []; const isBot = allowBots && (bots.includes(authorType) || bots.includes(author)); const isMaintainer = allowMaintainers && contributors.includes(authorRole); From 6cf062030adfe855b6763c79449d449afa642bf0 Mon Sep 17 00:00:00 2001 From: CD Cabrera Date: Mon, 11 May 2026 14:54:28 -0400 Subject: [PATCH 3/4] fix: real change --- bin/t2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/t2.js b/bin/t2.js index d8ab8d1..c11b140 100755 --- a/bin/t2.js +++ b/bin/t2.js @@ -16,5 +16,5 @@ const doIt = () => { console.log(`t1: ${output.join(', ')}`); }; - +// comment doIt(); From c3c55ded5785d7acfab94b82cca6f1b5834144c8 Mon Sep 17 00:00:00 2001 From: CD Cabrera Date: Mon, 11 May 2026 14:57:27 -0400 Subject: [PATCH 4/4] fix: again --- bin/t2.js | 2 +- bin/test.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 bin/test.ts diff --git a/bin/t2.js b/bin/t2.js index c11b140..d8ab8d1 100755 --- a/bin/t2.js +++ b/bin/t2.js @@ -16,5 +16,5 @@ const doIt = () => { console.log(`t1: ${output.join(', ')}`); }; -// comment + doIt(); diff --git a/bin/test.ts b/bin/test.ts new file mode 100644 index 0000000..92e44ea --- /dev/null +++ b/bin/test.ts @@ -0,0 +1 @@ +// my ts file