Fix CodeQL workflow: invalid matrix context in job-level if condition#406
Draft
Fix CodeQL workflow: invalid matrix context in job-level if condition#406
Conversation
The CodeQL workflow has been failing since Dec 21, 2025 with 0 jobs due to a workflow validation error. The analyze job had: if: matrix.language != 'python' || needs.detect.outputs.python_changed == 'true' The matrix context is NOT available in jobs.<job_id>.if conditions in GitHub Actions, causing: 'Unrecognized named-value: matrix' Fix: Remove the detect job and the invalid if condition from analyze job. All three language analyses (actions, javascript-typescript, python) will now run whenever the paths trigger fires. Co-authored-by: MightyPrytanis <219587333+MightyPrytanis@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Investigate potential issues with CodeQL workflows
Fix CodeQL workflow: invalid matrix context in job-level if condition
Feb 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CodeQL has been failing since Dec 21, 2025 with 0 jobs on every run — GitHub's signature for a workflow parse/validation error, not a job failure.
Two sequential bugs introduced the breakage:
paths-ignorewithexclude_paths, which is not a valid GitHub Actions keymatrix.*in a job-levelifcondition:GitHub Actions only allows
matrix.*in step-levelifand a few other specific contexts — notjobs.<job_id>.if. This causes an immediate parse failure:Unrecognized named-value: 'matrix'.Changes:
detectjob (which existed solely to feed the broken conditional)needs: detectand the invalidifcondition fromanalyzepaths:trigger (the valid replacement forpaths-ignore) is preservedAll three language analyses (
actions,javascript-typescript,python) now run unconditionally when the path filter triggers the workflow.🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.