From d7ee6e95d9dad4bcd9f8592afd6c546fd64c57bc Mon Sep 17 00:00:00 2001 From: Helmi Date: Tue, 26 Aug 2025 14:07:23 +0200 Subject: [PATCH] feat: add Claude Code dispatch workflow --- .github/workflows/claude-dispatch.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/claude-dispatch.yml diff --git a/.github/workflows/claude-dispatch.yml b/.github/workflows/claude-dispatch.yml new file mode 100644 index 0000000..ec75bac --- /dev/null +++ b/.github/workflows/claude-dispatch.yml @@ -0,0 +1,25 @@ +name: Claude Code Dispatch + +on: + repository_dispatch: + types: [claude-dispatch] + +jobs: + claude-dispatch: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + issues: write + id-token: write + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 1 + + - name: Run Claude Code + id: claude + uses: anthropics/claude-code-action@eap + with: + mode: 'remote-agent' \ No newline at end of file