Skip to content

Commit 3436282

Browse files
groksrcclaude
andauthored
ci: disable Claude Code Review workflow (broken auth) (#19)
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>
1 parent 48e992c commit 3436282

1 file changed

Lines changed: 19 additions & 8 deletions

File tree

.github/workflows/claude-code-review.yml

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
name: Claude Code Review
22

3+
# DISABLED 2026-05-18: the org disabled Claude subscription access for Claude
4+
# Code, and this workflow has no ANTHROPIC_API_KEY fallback, so it fails in
5+
# ~19s on every PR before reviewing anything. It is a review bot, not a
6+
# build/correctness gate. Trigger is set to workflow_dispatch only so the
7+
# config is preserved and easy to restore.
8+
#
9+
# To re-enable: fix auth (re-enable Claude subscription access for Claude
10+
# Code in org settings, OR add an ANTHROPIC_API_KEY repo secret and wire it
11+
# into the action's `with:` block), then restore the pull_request trigger
12+
# that is commented out below.
313
on:
4-
pull_request:
5-
types: [opened, synchronize]
6-
# Optional: Only run on specific file changes
7-
# paths:
8-
# - "src/**/*.ts"
9-
# - "src/**/*.tsx"
10-
# - "src/**/*.js"
11-
# - "src/**/*.jsx"
14+
workflow_dispatch:
15+
# pull_request:
16+
# types: [opened, synchronize]
17+
# # Optional: Only run on specific file changes
18+
# # paths:
19+
# # - "src/**/*.ts"
20+
# # - "src/**/*.tsx"
21+
# # - "src/**/*.js"
22+
# # - "src/**/*.jsx"
1223

1324
jobs:
1425
claude-review:

0 commit comments

Comments
 (0)