From 1d4650c102d922ea85062d567f39fbd6fab85a3f Mon Sep 17 00:00:00 2001 From: Benny Yen Date: Thu, 11 Sep 2025 22:25:16 +0800 Subject: [PATCH] fix: update test workflow reference in test-local.sh (#564) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: update test workflow reference in test-local.sh Change workflow file from test-action.yml to test-base-action.yml 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude * docs(CLAUDE): update test workflow reference in CLAUDE.md --------- Co-authored-by: Claude --- base-action/CLAUDE.md | 2 +- base-action/test-local.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base-action/CLAUDE.md b/base-action/CLAUDE.md index 02c8350..47a9641 100644 --- a/base-action/CLAUDE.md +++ b/base-action/CLAUDE.md @@ -50,7 +50,7 @@ This is a GitHub Action that allows running Claude Code within GitHub workflows. - Unit tests for configuration logic - Integration tests for prompt preparation -- Full workflow tests in `.github/workflows/test-action.yml` +- Full workflow tests in `.github/workflows/test-base-action.yml` ## Important Technical Details diff --git a/base-action/test-local.sh b/base-action/test-local.sh index 43ea427..22758e9 100755 --- a/base-action/test-local.sh +++ b/base-action/test-local.sh @@ -9,4 +9,4 @@ fi # Run the test workflow locally # You'll need to provide your ANTHROPIC_API_KEY echo "Running action locally with act..." -act push --secret ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" -W .github/workflows/test-action.yml --container-architecture linux/amd64 \ No newline at end of file +act push --secret ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" -W .github/workflows/test-base-action.yml --container-architecture linux/amd64 \ No newline at end of file