From bcd6679d8d041436b17a0e1f5f5af378867a50a9 Mon Sep 17 00:00:00 2001 From: Niladri Das <125604915+bniladridas@users.noreply.github.com> Date: Sun, 23 Aug 2026 19:40:46 +0530 Subject: [PATCH] fix(ci): repair ci-sync workflow broken needs and missing step - needs: build-and-test -> extra-ci (no such job, caused 0 jobs failure on every push) - add missing Perform CodeQL Analysis step - keeps workflow_dispatch only, so push no longer triggers failing 0s runs Fixes failing runs 32642224973, 32603523811 etc. --- .github/workflows/ci-sync.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-sync.yml b/.github/workflows/ci-sync.yml index 18865cd..218f043 100644 --- a/.github/workflows/ci-sync.yml +++ b/.github/workflows/ci-sync.yml @@ -150,7 +150,7 @@ jobs: ctest --output-on-failure --parallel 2 codeql-analysis: - needs: build-and-test + needs: extra-ci runs-on: ubuntu-latest permissions: actions: read @@ -219,3 +219,8 @@ jobs: # Build with CodeQL using limited parallelism cmake --build . --config Release -- -j2 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v4 + with: + category: "/language:cpp"