From 8a8def7d3f6f4aed5aec24ab6f2d6f54e483f77e Mon Sep 17 00:00:00 2001 From: Strycher Date: Fri, 26 Jun 2026 02:10:30 -0400 Subject: [PATCH] chore(#120): disable auto-trigger on inherited Cloudflare deploy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit deploy.yml (inherited from upstream zjs81) fired on every tag push and failed on a missing CLOUDFLARE_API_TOKEN — secrets do not fork. Switch to workflow_dispatch-only to stop the per-tag failures; preserve the job for the scoped Offband web-app launch (Feature #121 / Epic #122). --- .github/workflows/deploy.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c3926c9..d53a271 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,9 +1,12 @@ name: Deploy to Cloudflare Workers +# Manual-only. This workflow was inherited from upstream zjs81 and deploys the web +# build to *its* Cloudflare account; this fork has no Cloudflare secrets, so the old +# `push: tags: ['*']` trigger failed on every tag (missing CLOUDFLARE_API_TOKEN). +# Disabled the auto-trigger to stop the per-tag failures (chore #120). The job is +# preserved for the deliberate Offband web-app launch (Feature #121 / Epic #122), +# which will define the proper trigger scope + secrets. on: - push: - tags: - - '*' workflow_dispatch: jobs: