From ff45187618dd01539226ac577308e0ddb82b0630 Mon Sep 17 00:00:00 2001 From: David Cozens Date: Wed, 17 Jun 2026 14:16:02 +0100 Subject: [PATCH] ci: park release-please until 0.1.0 beta baseline Switch the Release Please workflow to workflow_dispatch-only so it stops failing on every push to main. With no prior release and a 0.0.0 manifest, release-please builds one initial release PR from all of main's history; the changelog overflows GitHub's PR-body limit and the run errors trying to spill to a release-notes.md branch that doesn't exist. The job is not a required check, so this is non-blocking noise rather than a merge gate. Baselining now would only be redone after the pending business-org migration, so park the push trigger and re-enable it at beta time once the manifest is seeded to 0.1.0 and a curated v0.1.0 release/tag exists. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/release-please.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 9ffa86d3..5cf87ad3 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -1,8 +1,18 @@ name: Release Please +# Parked: manual-trigger only until the first 0.1.0 beta baseline. +# +# With no prior release and a 0.0.0 manifest, release-please tries to build one +# initial release PR from all of main's history; that changelog overflows +# GitHub's PR-body limit and the run fails on every push. Rather than baseline +# on this (personal) repo only to redo it after the business-org migration, the +# push trigger is disabled. Re-enable it (restore `on: push: branches: [main]`) +# at beta time, once .release-please-manifest.json is seeded to 0.1.0 and a +# curated v0.1.0 release/tag exists, so release-please manages 0.1.x onward +# incrementally. Until then it can still be exercised by hand via the Actions +# tab (workflow_dispatch). on: - push: - branches: [ main ] + workflow_dispatch: permissions: contents: write