From 4ec8b9816d655f1db73a6f815281b608d6d901ae Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Jul 2026 13:03:41 +0000 Subject: [PATCH] =?UTF-8?q?fix(ci):=20point=20CodeQL=20at=20'actions'=20?= =?UTF-8?q?=E2=80=94=20repo=20has=20no=20JS/TS=20source?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CodeQL was configured for javascript-typescript, but feedback-o-tron has zero .js/.ts files (Elixir-primary, with Zig/Nickel/Julia support code). CodeQL supports none of those languages, so every run since 2026-06-24 failed with "no source code was seen". Switch the matrix to 'actions', the one CodeQL-supported language present, which analyses the repo's GitHub Actions workflows for CI-security issues — turning the gate green legitimately instead of disabling it. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01UPFC9YQ7g9gc3VnRox42Q1 --- .github/workflows/codeql.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index de748c0..368c1c6 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -27,7 +27,12 @@ jobs: fail-fast: false matrix: include: - - language: javascript-typescript + # feedback-o-tron is Elixir-primary (Zig/Nickel/Julia support code); + # CodeQL supports none of those languages, so a javascript-typescript + # matrix found no source and failed every run with "no source seen". + # `actions` is the one CodeQL language present here — it analyses the + # repo's GitHub Actions workflows for CI-security issues. + - language: actions build-mode: none steps: - name: Checkout