From 1a7eac192cfae991d44b90a9e0b51008dfb4c99c Mon Sep 17 00:00:00 2001 From: QuantumGhost Date: Mon, 12 Jan 2026 15:12:06 +0800 Subject: [PATCH] ci: remove unused GitHub Action file The `workflow_run` event requires the executed workflow files exist in the default branch. --- .github/workflows/deploy-hitl-frontend.yml | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/deploy-hitl-frontend.yml diff --git a/.github/workflows/deploy-hitl-frontend.yml b/.github/workflows/deploy-hitl-frontend.yml deleted file mode 100644 index f4f596ad02..0000000000 --- a/.github/workflows/deploy-hitl-frontend.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Deploy HITL frontend - -on: - workflow_run: - workflows: ["Build and Push API & Web"] - branches: - - "feat/hitl-frontend" - types: - - completed - -jobs: - deploy: - runs-on: ubuntu-latest - if: | - github.event.workflow_run.conclusion == 'success' && - github.event.workflow_run.head_branch == 'feat/hitl-frontend' - steps: - - name: Deploy to server - uses: appleboy/ssh-action@v0.1.8 - with: - host: ${{ secrets.HITL_SSH_HOST }} - username: ${{ secrets.SSH_USER }} - key: ${{ secrets.SSH_PRIVATE_KEY }} - script: | - ${{ vars.SSH_SCRIPT || secrets.SSH_SCRIPT }}