From baedab602ca859a71cd77af59b5e4d21d6f7067a Mon Sep 17 00:00:00 2001 From: WDI-Ideas Date: Thu, 9 Apr 2026 12:20:40 +0530 Subject: [PATCH] refactor(ci): remove job dependencies for pure flag execution Drop sonar/deploy needs so each stage runs only when its own run_* flag is true. Made-with: Cursor --- .gitea/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a5df26c..a0f4ae2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -97,7 +97,6 @@ jobs: # 🔍 SONAR sonar: if: inputs.run_sonar == true || inputs.run_sonar == 'true' - needs: build uses: Rajendra.Reddy/wdipl-actions/.gitea/workflows/quality.yml@main with: wait_for_quality_gate: ${{ inputs.wait_for_quality_gate }} @@ -108,7 +107,6 @@ jobs: # 🚀 DEPLOY deploy: if: inputs.run_deploy == true || inputs.run_deploy == 'true' - needs: [build, sonar] uses: Rajendra.Reddy/wdipl-actions/.gitea/workflows/deploy.yml@main with: tech_stack: ${{ inputs.tech_stack }}