ci: disable Claude Code Review workflow (broken auth)#19
Merged
Conversation
The org disabled Claude subscription access for Claude Code and this workflow has no ANTHROPIC_API_KEY fallback, so it fails in ~19s on every PR before reviewing anything (verified repo-wide: fails on unrelated branches too, e.g. codex/fix-schema-picoschema-examples). It is a non-blocking review bot, not a build or correctness gate. Switch the trigger to workflow_dispatch only so it no longer red-Xes every PR. The pull_request trigger is preserved commented-out with restore instructions in a header comment — re-enable once auth is fixed (org setting or ANTHROPIC_API_KEY secret). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Problem
claude-code-review.ymlfails on every PR in ~19s with:ANTHROPIC_API_KEYis unset, so there's no fallback. It dies before reading the diff — no review is produced. This is pre-existing and repo-wide, not introduced by any recent PR: it also failed on the unrelatedcodex/fix-schema-picoschema-examplesbranch back on 2026-05-06. It went unnoticed because the workflow is PR-only (runs onmainareskipped).It is a non-blocking review bot — there is no build or lint gate on this repo — so the failure is cosmetic but red-Xes every PR and obscures real signal.
Change
Switch the trigger to
workflow_dispatchonly. Thepull_requesttrigger is preserved commented-out, with a header comment explaining why it's disabled and exactly how to restore it.To re-enable (separate, admin-level)
Either:
ANTHROPIC_API_KEYrepo secret and wire it into the action'swith:block…then uncomment the
pull_requesttrigger.Note
This unblocks PR #18 (Hermes docs) and any other open/future PRs. Self-evidently can't be reviewed by the very bot it disables.
🤖 Generated with Claude Code