fix: resolve Guardrails, CodeQL, and PR Check CI failures#28
Closed
fix: resolve Guardrails, CodeQL, and PR Check CI failures#28
Conversation
- Guardrails: Remove AGENTS.md and CLAUDE.md from blocked files list (these are legitimate project files, not AI agent bloat) - CodeQL: Remove python from language matrix (no Python files in repo, causing fatal 'no source code seen' error during database finalize) - PR Check: Run prettier to format 165+ unformatted TSX/MD files
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
Fixes three failing CI checks on main:
1. Guardrails Failure
AGENTS.mdandCLAUDE.mdwere in the blocked files list, but both exist as legitimate project files in the repoAGENTS.mdandCLAUDE.mdfrom the blocked files list in.github/workflows/guardrails.yml2. CodeQL Failure
pythonwas in the language matrix but the repo has zero Python files. CodeQL'sdatabase finalizestep failed with exit code 32: "CodeQL detected code written in JavaScript/TypeScript, Rust, GitHub Actions and C/C++, but not any written in Python"pythonfrom the language matrix in.github/workflows/security-codeql.yml3. PR Check Failure
pnpm formatto auto-format all filesFiles Changed
.github/workflows/guardrails.yml- workflow config.github/workflows/security-codeql.yml- workflow config