From 9e589de95af1642679da8dd80cf4fd7489462296 Mon Sep 17 00:00:00 2001 From: WDI-Ideas Date: Wed, 8 Apr 2026 17:27:09 +0530 Subject: [PATCH] chore(debug): add visible caller variable preflight logs Add preflight debug job to print RUN_* variable values before reusable workflow call. Made-with: Cursor --- .gitea/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b42330b..5822480 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,7 +6,19 @@ on: pull_request: jobs: + preflight_debug: + runs-on: ubuntu-latest + steps: + #region agent log + - name: Print caller variable resolution + run: | + echo "DBG_CALLER_RUN_BUILD='${{ vars.RUN_BUILD }}'" + echo "DBG_CALLER_RUN_QUALITY='${{ vars.RUN_QUALITY }}'" + echo "DBG_CALLER_RUN_DEPLOY='${{ vars.RUN_DEPLOY }}'" + #endregion + ci: + needs: [preflight_debug] # Pin SHA (bump when wdipl-actions ci.yml changes). Propagates ci_steps via build workflow outputs. uses: Rajendra.Reddy/wdipl-actions/.gitea/workflows/ci.yml@91dccaa32a528dca5331faa34fcc09cc64fec0a8