From 84f038344a61d5f698881c620434cf4d6b3f0315 Mon Sep 17 00:00:00 2001 From: "lilong.129" Date: Sat, 2 Aug 2025 22:13:32 +0800 Subject: [PATCH] test: debug workflow --- .github/workflows/claude-code.yml | 1 + .github/workflows/test.yml | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/claude-code.yml b/.github/workflows/claude-code.yml index 5c8179fc..22afa6a6 100644 --- a/.github/workflows/claude-code.yml +++ b/.github/workflows/claude-code.yml @@ -9,6 +9,7 @@ on: types: [opened, assigned, edited] pull_request_review: types: [submitted] + workflow_dispatch: jobs: claude: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..c36da14b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +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