From fee3f6fcbb8e1a9c646f79f099316d672afbd4ab Mon Sep 17 00:00:00 2001 From: Lina Tawfik Date: Thu, 22 May 2025 22:03:03 -0700 Subject: [PATCH] Use local action for testing in same repository MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When testing an action within its own repository, use './' instead of the published action reference. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/claude.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index d5b1077..d6e36f0 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -31,6 +31,6 @@ jobs: - name: Run Claude Code id: claude - uses: anthropics/claude-code-action@beta + uses: ./ with: anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}