ci: add CodeQL workflow (fix PR block — 3 configurations not found)#986
Closed
kungfuk3nnyyy wants to merge 2 commits into
Closed
ci: add CodeQL workflow (fix PR block — 3 configurations not found)#986kungfuk3nnyyy wants to merge 2 commits into
kungfuk3nnyyy wants to merge 2 commits into
Conversation
PRs were blocked by "3 configurations not found" because branch protection expects CodeQL results (javascript-typescript, java-kotlin, actions) but no workflow existed to produce them on PR branches. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
🔒 Security Reviewer GateThis PR touches security-sensitive files. Before merging, complete the checklist in the PR description:
This comment is posted automatically when security-sensitive paths are modified. |
Contributor
Shadow-scan resultsScanned: 0 runs No runs to scan. Full output available as artifact |
The repo uses GitHub's CodeQL default setup (Security settings). Advanced workflow conflicts with it: "analyses from advanced configurations cannot be processed when the default setup is enabled". Default setup already runs on PRs; no workflow needed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Collaborator
Author
|
Removing — repo uses CodeQL default setup which conflicts with a workflow-based approach. Fix is to disable default setup in GitHub Security settings instead. |
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.
Summary
Every PR was blocked by "Code scanning results / CodeQL — 3 configurations not found" because branch protection expects CodeQL results for
javascript-typescript,java-kotlin, andactionson each PR branch, but no workflow existed to produce them.Adds
.github/workflows/codeql.ymlthat runs all 3 language configurations on push tomain, on PRs targetingmain, and on a weekly schedule (Monday 08:00 UTC).Test plan
🤖 Generated with Claude Code