From fc433e05b6e7b2414e1d36d6a514007e5c2ccee1 Mon Sep 17 00:00:00 2001 From: Boshen Date: Mon, 27 Apr 2026 10:50:27 +0800 Subject: [PATCH] chore: remove Claude issue workflow --- .github/workflows/claude.yml | 50 ------------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/claude.yml diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml deleted file mode 100644 index 042c816b06..0000000000 --- a/.github/workflows/claude.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: Claude Code - -on: - issues: - types: [assigned] - -jobs: - analyze: - if: github.repository == 'voidzero-dev/vite-plus' && github.event.action == 'assigned' && github.event.assignee.login == 'boshen' - runs-on: ubuntu-slim - permissions: - contents: read - issues: write - id-token: write - steps: - - name: Checkout repository - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - with: - fetch-depth: 100 - persist-credentials: true - - - name: Run Claude Code - id: claude - uses: anthropics/claude-code-action@26ec041249acb0a944c0a47b6c0c13f05dbc5b44 # v1.0.70 - with: - claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} - assignee_trigger: 'boshen' - claude_args: --allowedTools "Edit,Write,Read,Glob,Grep,Bash(gh:*),Bash(cargo:*),Bash(git:*),Bash(just:*),WebFetch,TodoWrite" - prompt: | - Analyze issue #${{ github.event.issue.number }} in ${{ github.repository }} and determine if it can be fixed. - - First, use `gh issue view ${{ github.event.issue.number }}` to read the issue details. - - Then: - 1. Search the codebase to gather relevant context (related files, existing implementations, tests) - 2. Determine if the issue is fixable and estimate the complexity - - Finally, post a comment on the issue with: - - A brief summary of your understanding of the issue - - Relevant files/code you found - - Whether this issue is fixable (yes/no/needs clarification) - - If the issue is unclear, ask for more context - - If fixable, provide a concrete implementation plan with specific steps - - Any potential concerns or blockers - - - name: Unassign boshen - if: always() - env: - GH_TOKEN: ${{ github.token }} - run: gh issue edit ${{ github.event.issue.number }} --remove-assignee Boshen