From 3f29e443cbdd7ad092c1ec6494958230a9737e17 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 18 Jun 2026 09:44:38 -0500 Subject: [PATCH] Update stale changelog-cap comment notes no longer feeds a TestFlight changelog (it only goes to Slack now), so justify the 3900-char cap by Slack message size instead of the TestFlight "What to Test" limit. Behavior unchanged. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/nightly-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index ae653ccc2b..f3ec4ac3d1 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -62,7 +62,7 @@ jobs: if [ -z "$notes" ]; then notes="Nightly build — no new commits since the last nightly." fi - # Cap the whole changelog (TestFlight "What to Test" is limited to 4000 characters). + # Cap the whole changelog to keep the Slack message a reasonable size. # head -c caps the combined stream; cut -c would only cap each line independently. notes=$(printf '%s' "$notes" | head -c 3900) {