mirror of
https://github.com/pacnpal/Claude-code-review.git
synced 2026-02-04 19:45:15 -05:00
Compare commits
10 Commits
v1.1.1
...
73af3bd3b5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
73af3bd3b5 | ||
|
|
fe22f689e6 | ||
|
|
fd8f0291bd | ||
|
|
f3ec537997 | ||
|
|
10918d4960 | ||
|
|
8a28710340 | ||
|
|
36c9747f74 | ||
|
|
1fd8a96c46 | ||
|
|
fbef3b0029 | ||
|
|
c87aa2333a |
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@@ -30,8 +30,8 @@ jobs:
|
|||||||
git config --global user.name 'claude-code-review[bot]'
|
git config --global user.name 'claude-code-review[bot]'
|
||||||
git config --global user.email 'claude-code-review[bot]@users.noreply.github.com'
|
git config --global user.email 'claude-code-review[bot]@users.noreply.github.com'
|
||||||
git add -f dist
|
git add -f dist
|
||||||
git commit -m 'Add built files'
|
git diff --staged --quiet || git commit -m 'Add built files'
|
||||||
git push origin HEAD:main
|
git push origin HEAD:main || echo "No changes to push or push failed"
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
|
|||||||
15
README.md
15
README.md
@@ -5,7 +5,20 @@
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
A GitHub Action that performs automated code reviews using Claude Sonnet 4.5, Anthropic's latest AI model for code analysis.
|
## ⚠️ DEPRECATED
|
||||||
|
|
||||||
|
**This project is deprecated.** Anthropic now offers official Claude integrations and there are improved alternatives for AI-powered code review. We recommend exploring these official solutions:
|
||||||
|
|
||||||
|
- **Anthropic API**: Use the official Anthropic API with the latest Claude models
|
||||||
|
- **Claude for Workspace**: Enterprise integration for team workflows
|
||||||
|
- **GitHub Copilot**: AI-powered code assistance (note: primarily uses OpenAI models)
|
||||||
|
- **Other AI Code Review Tools**: Various third-party integrations with modern AI models
|
||||||
|
|
||||||
|
This repository will remain available for historical reference, but is no longer actively maintained.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
A GitHub Action that performs automated code reviews using Claude Sonnet 4.5, Anthropic's AI model for code analysis.
|
||||||
|
|
||||||
## Why Use Claude Code Review?
|
## Why Use Claude Code Review?
|
||||||
|
|
||||||
|
|||||||
12
package-lock.json
generated
12
package-lock.json
generated
@@ -12,7 +12,7 @@
|
|||||||
"@actions/core": "^1.11.1",
|
"@actions/core": "^1.11.1",
|
||||||
"@actions/exec": "^1.1.1",
|
"@actions/exec": "^1.1.1",
|
||||||
"@actions/github": "^6.0.1",
|
"@actions/github": "^6.0.1",
|
||||||
"glob": "^11.0.3",
|
"glob": "^11.1.0",
|
||||||
"js-yaml": "^4.1.1",
|
"js-yaml": "^4.1.1",
|
||||||
"node-fetch": "^3.3.2"
|
"node-fetch": "^3.3.2"
|
||||||
},
|
},
|
||||||
@@ -2613,14 +2613,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/glob": {
|
"node_modules/glob": {
|
||||||
"version": "11.0.3",
|
"version": "11.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-11.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-11.1.0.tgz",
|
||||||
"integrity": "sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==",
|
"integrity": "sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==",
|
||||||
"license": "ISC",
|
"license": "BlueOak-1.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"foreground-child": "^3.3.1",
|
"foreground-child": "^3.3.1",
|
||||||
"jackspeak": "^4.1.1",
|
"jackspeak": "^4.1.1",
|
||||||
"minimatch": "^10.0.3",
|
"minimatch": "^10.1.1",
|
||||||
"minipass": "^7.1.2",
|
"minipass": "^7.1.2",
|
||||||
"package-json-from-dist": "^1.0.0",
|
"package-json-from-dist": "^1.0.0",
|
||||||
"path-scurry": "^2.0.0"
|
"path-scurry": "^2.0.0"
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
"@actions/core": "^1.11.1",
|
"@actions/core": "^1.11.1",
|
||||||
"@actions/exec": "^1.1.1",
|
"@actions/exec": "^1.1.1",
|
||||||
"@actions/github": "^6.0.1",
|
"@actions/github": "^6.0.1",
|
||||||
"glob": "^11.0.3",
|
"glob": "^11.1.0",
|
||||||
"node-fetch": "^3.3.2",
|
"node-fetch": "^3.3.2",
|
||||||
"js-yaml": "^4.1.1"
|
"js-yaml": "^4.1.1"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user