From e1421589e6e82c1bc2761e7fd2ddfffb7e0dc758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20K=C5=82ys?= Date: Mon, 9 Feb 2026 11:22:31 +0100 Subject: [PATCH] CI: don't fail when CodeQL code scanning isn't enabled --- .github/workflows/codeql.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ea30ee464..f8b94144c 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -43,3 +43,6 @@ jobs: - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 + # Repo settings can disable code scanning (e.g., private repos without Code Security enabled). + # Keep CI green while still attempting analysis when available. + continue-on-error: true