Skip to content

Disable missing diff-ranges fallback when overlay enabled manually#3939

Merged
henrymercer merged 1 commit into
mainfrom
henrymercer/skip-overlay-revert-when-explicit
Jun 1, 2026
Merged

Disable missing diff-ranges fallback when overlay enabled manually#3939
henrymercer merged 1 commit into
mainfrom
henrymercer/skip-overlay-revert-when-explicit

Conversation

@henrymercer
Copy link
Copy Markdown
Contributor

If overlay is enabled explicitly via the CODEQL_OVERLAY_DATABASE_MODE environment variable, then disable the diff-ranges fallback. This means that when the environment variable is set, overlay will be enabled even if diff-ranges are missing.

Risk assessment

For internal use only. Please select the risk level of this change:

  • Low risk: Changes are fully under feature flags, or have been fully tested and validated in pre-production environments and are highly observable, or are documentation or test only.

Which use cases does this change impact?

Workflow types:

  • Advanced setup - Impacts users who have custom CodeQL workflows.
  • Managed - Impacts users with dynamic workflows (Default Setup, Code Quality, ...).

Products:

  • Code Scanning - The changes impact analyses when analysis-kinds: code-scanning.

Environments:

  • Dotcom - Impacts CodeQL workflows on github.com and/or GitHub Enterprise Cloud with Data Residency.
  • GHES - Impacts CodeQL workflows on GitHub Enterprise Server.

How did/will you validate this change?

  • Unit tests - I am depending on unit test coverage (i.e. tests in .test.ts files).

If something goes wrong after this change is released, what are the mitigation and rollback strategies?

  • Feature flags - All new or changed code paths can be fully disabled with corresponding feature flags.

How will you know if something goes wrong after this change is released?

  • Telemetry - I rely on existing telemetry or have made changes to the telemetry.
    • Alerts - New or existing monitors will trip if something goes wrong with this change.

Are there any special considerations for merging or releasing this change?

  • No special considerations - This change can be merged at any time.

Merge / deployment checklist

  • Confirm this change is backwards compatible with existing workflows.
  • Consider adding a changelog entry for this change.
  • Confirm the readme and docs have been updated if necessary.

Copilot AI review requested due to automatic review settings June 1, 2026 14:36
@henrymercer henrymercer requested a review from a team as a code owner June 1, 2026 14:36
@github-actions github-actions Bot added the size/S Should be easy to review label Jun 1, 2026
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR refines how overlay analysis behaves when diff ranges are unavailable by introducing an explicit “overlay mode was manually set” signal, so that the existing “missing diff-ranges → fall back to non-overlay” behavior is skipped when overlay is forced via CODEQL_OVERLAY_DATABASE_MODE.

Changes:

  • Add overlayModeSetExplicitly to the action Config and propagate it from overlay enablement into the final config.
  • Disable the “missing diff ranges” overlay fallback when overlay was explicitly selected.
  • Extend unit tests to assert the new behavior and to validate the explicit-vs-automatic distinction.
Show a summary per file
File Description
src/testing-utils.ts Extend createTestConfig defaults to include overlayModeSetExplicitly.
src/config-utils.ts Add overlayModeSetExplicitly to Config, thread it through overlay enablement, and gate the diff-ranges fallback on it.
src/config-utils.test.ts Update overlay enablement expectations and add coverage for the new explicit-overlay/no-diff behavior.
lib/entry-points.js Generated output reflecting the TypeScript changes (not reviewed).

Copilot's findings

  • Files reviewed: 3/4 changed files
  • Comments generated: 4

Comment thread src/config-utils.ts
Comment on lines +246 to +249
/**
* Whether the overlay database mode was set explicitly.
*/
overlayModeSetExplicitly: boolean;
Comment thread src/config-utils.ts
Comment on lines +1099 to +1101
* Query exclusions for incremental-only queries are then applied whenever the diff ranges are
* available — which, after the fallback above, is exactly the set of runs where any kind of
* incremental analysis (overlay or diff-informed) is in effect.
Comment thread src/config-utils.ts
Comment on lines +246 to +249
/**
* Whether the overlay database mode was set explicitly.
*/
overlayModeSetExplicitly: boolean;
Comment thread src/config-utils.ts
Comment on lines +1099 to +1101
* Query exclusions for incremental-only queries are then applied whenever the diff ranges are
* available — which, after the fallback above, is exactly the set of runs where any kind of
* incremental analysis (overlay or diff-informed) is in effect.
@henrymercer henrymercer added this pull request to the merge queue Jun 1, 2026
Merged via the queue into main with commit 2a1689e Jun 1, 2026
226 checks passed
@henrymercer henrymercer deleted the henrymercer/skip-overlay-revert-when-explicit branch June 1, 2026 17:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size/S Should be easy to review

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants