From 3b040f158741931fdb9bcba60e329383dbd3d4be Mon Sep 17 00:00:00 2001 From: Claude via Claude Code Date: Wed, 13 Aug 2025 15:51:12 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20NekoCode=20GitHub=20Action?= =?UTF-8?q?s:=20update=20to=20use=20releases/nekocode-rust=20binary?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change download path from bin/nekocode_ai to releases/nekocode-rust - Update command from nekocode_ai to nekocode-rust - This should fix the 0 files analyzed issue in PR analysis 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/nekocode-pr-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nekocode-pr-analysis.yml b/.github/workflows/nekocode-pr-analysis.yml index f463187a..d159c807 100644 --- a/.github/workflows/nekocode-pr-analysis.yml +++ b/.github/workflows/nekocode-pr-analysis.yml @@ -23,14 +23,14 @@ jobs: - name: Download NekoCode run: | mkdir -p bin - curl -L https://github.com/moe-charm/nekocode-rust/raw/main/bin/nekocode_ai -o bin/nekocode_ai - chmod +x bin/nekocode_ai + curl -L https://github.com/moe-charm/nekocode-rust/raw/main/releases/nekocode-rust -o bin/nekocode-rust + chmod +x bin/nekocode-rust - name: Analyze Current PR id: analyze-pr run: | echo "🔍 Analyzing PR changes..." - ./bin/nekocode_ai analyze src/ --stats-only > pr_analysis.txt 2>&1 || true + ./bin/nekocode-rust analyze src/ --stats-only > pr_analysis.txt 2>&1 || true echo "📊 Analysis Results:" cat pr_analysis.txt