From a7e88a44f8ddbd93a8a7d3c158e641a3e4e5d26d Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Thu, 18 Dec 2025 13:06:44 +0000 Subject: [PATCH] Only enable overlay for the code scanning suite --- .github/workflows/codescanning-config-cli.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codescanning-config-cli.yml b/.github/workflows/codescanning-config-cli.yml index fe6d976f0..cbac3a8a9 100644 --- a/.github/workflows/codescanning-config-cli.yml +++ b/.github/workflows/codescanning-config-cli.yml @@ -6,9 +6,11 @@ env: # Diff informed queries add an additional query filter which is not yet # taken into account by these tests. CODEQL_ACTION_DIFF_INFORMED_QUERIES: false - # Enable overlay to ensure stability around the exclude-from-incremental query filter. + # Specify overlay enablement manually to ensure stability around the exclude-from-incremental + # query filter. Here we only enable for the default code scanning suite. CODEQL_ACTION_OVERLAY_ANALYSIS: true - CODEQL_ACTION_OVERLAY_ANALYSIS_JAVASCRIPT: true + CODEQL_ACTION_OVERLAY_ANALYSIS_JAVASCRIPT: false + CODEQL_ACTION_OVERLAY_ANALYSIS_CODE_SCANNING_JAVASCRIPT: true on: push: