From 3deecf296d0725d4dbfc84bc3c58c8247a8e5789 Mon Sep 17 00:00:00 2001 From: Shavkat Aynurin Date: Wed, 26 Nov 2025 10:39:01 -0800 Subject: [PATCH] add log statement to confirm debug mode --- src/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.js b/src/index.js index 44e9f01..5898de9 100644 --- a/src/index.js +++ b/src/index.js @@ -62,6 +62,11 @@ async function uploadArtifacts(files, options = {}) { async function run() { const outputFilePath = 'OUTPUT.md'; + if (process.env.DEBUG === 'true') { + core.info('DEBUG mode enabled - uploading artifacts...'); + } else { + core.info('DEBUG mode disabled...'); + } try { // Get environment variables const apiUrl = process.env.STREETRACE_API_URL || 'https://api.streetrace.ai/';