From 724d566f5cc4ff27a1a00c34cb95fb68a7352068 Mon Sep 17 00:00:00 2001 From: Tiago Gimenes Date: Fri, 22 May 2026 17:08:40 -0300 Subject: [PATCH] ci: remove broken Cloudflare deploy workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `Warp` workflow (`.github/workflows/cf-deploy.yaml`) deploys this package to Cloudflare Workers via `wrangler-action`, but it has been failing on every push to `main` and the project is now published to npm rather than running as a Worker. Remove it to stop the noise. `wrangler.toml` and the `dev`/`deploy` scripts are left in place — they are still useful for local development. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/cf-deploy.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/cf-deploy.yaml diff --git a/.github/workflows/cf-deploy.yaml b/.github/workflows/cf-deploy.yaml deleted file mode 100644 index 0436157..0000000 --- a/.github/workflows/cf-deploy.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# https://docs.github.com/en/actions - -name: Warp - -on: - push: - branches: - - main - -jobs: - deploy: - runs-on: ubuntu-latest - name: warp / cloudflare - steps: - - uses: actions/checkout@v3 - - - name: Install Dependencies - run: | - npm install --legacy-peer-deps - - - name: Publish - uses: cloudflare/wrangler-action@v3 - with: - apiToken: ${{ secrets.CF_API_TOKEN }} - accountId: ${{ secrets.CF_ACCOUNT_ID }} - secrets: | - API_KEY - env: - API_KEY: ${{ secrets.API_KEY }}