Conversation
Add .github/workflows/codeql.yml: CodeQL static analysis of the C# code on push/PR to master and weekly. build-mode: none (no build infra; runs on ubuntu). Actions are SHA-pinned and checkout uses persist-credentials: false, matching the repo hardening. This is the code-level SAST layer; dependencies are already covered by Dependabot + the audit gate. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Warning Review limit reached
More reviews will be available in 18 minutes and 42 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, the refill rate gradually slows as usage increases. The highest same-day bursts are limited more strictly. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
CodeQL Action v3 is deprecated (end of life December 2026). Move init/analyze to v4.36.2 (SHA-pinned), so the workflow starts on the current major. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
CodeQL code scanning (C#)
The one remaining layer: code-level SAST (everything else so far covers dependencies / supply chain).
.github/workflows/codeql.yml— CodeQL analysis of the C# code on push/PR tomasterand weekly.build-mode: none— analyzes sources directly, runs on ubuntu with no Windows-build infra (fast). Can switch to a built mode on windows-latest later for more precision.persist-credentials: false, matching the repo's hardening.Expect some findings to triage — likely around the file service's path handling and the tunnel/SSH argument construction, exactly the surface taint analysis is good at. We review them; nothing auto-applies.
🤖 Generated with Claude Code