Skip to content

chore(ci): fix CodeQL setup conflict + enable manual re-runs - #42

Merged
BigSimmo merged 1 commit into
mainfrom
chore/codeql-workflow-dispatch
Jun 19, 2026
Merged

chore(ci): fix CodeQL setup conflict + enable manual re-runs#42
BigSimmo merged 1 commit into
mainfrom
chore/codeql-workflow-dispatch

Conversation

@BigSimmo

Copy link
Copy Markdown
Owner

Resolves the CodeQL config conflict that failed on every PR.

Problem: The repo had BOTH GitHub's default CodeQL setup AND the advanced workflow (.github/workflows/codeql.yml) enabled. GitHub rejects the advanced workflow's SARIF upload in that state — error: "CodeQL analyses from advanced configurations cannot be processed when the default setup is enabled" — so the Analyze (python/actions/javascript-typescript) checks failed on every PR (including on main itself).

Fix:

  1. Disabled the default CodeQL setup via repo settings (done out-of-band; advanced workflow retained as the single source of truth, version-controlled in-repo).
  2. Added workflow_dispatch to codeql.yml so CodeQL can be re-run manually in future.

This PR also serves as the verification: its CodeQL run should now pass instead of failing on the SARIF upload step.

Allows manual re-runs of CodeQL. Also confirms the advanced workflow now
uploads SARIF successfully after disabling the conflicting default
CodeQL setup (which was causing 'cannot be processed when the default
setup is enabled' failures on every PR).
@BigSimmo
BigSimmo merged commit cffd1c6 into mainJun 19, 2026
8 checks passed
@BigSimmo
BigSimmo deleted the chore/codeql-workflow-dispatch branch June 19, 2026 09:07
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@BigSimmo