From e1867f99ef4aba24662c0e813ba0ae00b15a19f1 Mon Sep 17 00:00:00 2001 From: "lilong.129" Date: Sat, 2 Aug 2025 22:18:15 +0800 Subject: [PATCH] test: debug workflow --- .github/workflows/claude-code.yml | 1 + .github/workflows/test.yml | 16 ---------------- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/claude-code.yml b/.github/workflows/claude-code.yml index 22afa6a6..73abfe62 100644 --- a/.github/workflows/claude-code.yml +++ b/.github/workflows/claude-code.yml @@ -14,6 +14,7 @@ on: jobs: claude: if: | + github.event_name == 'workflow_dispatch' || (github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) || (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) || diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index c36da14b..00000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Test Actions - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Echo test - run: echo "GitHub Actions is working!" \ No newline at end of file