Skip to content

Commit 79ac1d8

Browse files
committed
Remove debug logging from action.ts
- Clean up debug logging that was added for troubleshooting - The Test GitHub Action workflow is now working correctly - All input parameters are being parsed properly
1 parent 63a8368 commit 79ac1d8

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

src/action.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,6 @@ async function main() {
1212
const comment = process.env.INPUT_COMMENT !== 'false';
1313
const statusCheck = process.env.INPUT_STATUS_CHECK !== 'false';
1414

15-
console.log('Debug - Input values:');
16-
console.log('INPUT_COMMENT:', process.env.INPUT_COMMENT);
17-
console.log('INPUT_STATUS_CHECK:', process.env.INPUT_STATUS_CHECK);
18-
console.log('All INPUT_* env vars:');
19-
Object.keys(process.env).filter(key => key.startsWith('INPUT_')).forEach(key => {
20-
console.log(` ${key}:`, process.env[key]);
21-
});
22-
console.log('comment:', comment);
23-
console.log('statusCheck:', statusCheck);
2415

2516
if (!githubToken) {
2617
console.error('❌ GitHub token is required');

0 commit comments

Comments
 (0)