fix(ci): unbreak changelog prose pipeline and add beta.25 prose#1810
Open
decepulis wants to merge 3 commits into
Open
fix(ci): unbreak changelog prose pipeline and add beta.25 prose#1810decepulis wants to merge 3 commits into
decepulis wants to merge 3 commits into
Conversation
Tag names start with "@", which gh's --field flag expands as a read-from-file reference and fails. --raw-field passes the value verbatim. Claude-Session: https://claude.ai/code/session_018H1XZpVx3z9n6rCWyxGbeN
✅ Deploy Preview for vjs10-site ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
📦 Bundle Size Report🎨 @videojs/html — no changesPresets (7)
Media (10)
Players (5)
Skins (30)
UI Components (39)
Sizes are marginal over the root entry point. ⚛️ @videojs/react — no changesPresets (7)
Media (9)
Skins (27)
UI Components (33)
Sizes are marginal over the root entry point. 🧩 @videojs/core — no changesEntries (14)
🏷️ @videojs/element — no changesEntries (2)
📦 @videojs/store — no changesEntries (3)
🔧 @videojs/utils — no changesEntries (10)
📦 @videojs/spf — no changesEntries (4)
ℹ️ How to interpretJS sizes are initial static graph totals (minified + brotli). Lazy dynamic chunks are shown separately when present.
Run |
The dispatched prose run for beta.25 failed with error_max_turns: 11 of its 20 turns were permission denials, since piped commands like `gh api graphql | jq` don't match the gh/git-only Bash allowlist. Allow common read-only text utilities and raise the cap to 50. Co-Authored-By: Claude <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_018H1XZpVx3z9n6rCWyxGbeN
Co-Authored-By: Claude <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_018H1XZpVx3z9n6rCWyxGbeN
mihar-22
approved these changes
Jul 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The prose-ified changelog for
@videojs/core@10.0.0-beta.25never got published today. Two independent bugs in.github/workflows/changelog-prose.ymlwere responsible; this PR fixes both and includes the beta.25 prose itself.Bug 1 — the release relay never fired. The
dispatchjob (added in #1792) runsgh workflow run --field tag_name="$TAG_NAME", but release tags start with@(@videojs/core@10.0.0-beta.25), which--fieldinterprets as a read-from-file reference:Fixed by switching to
--raw-field, which passes the value literally.Bug 2 — the prose job can't finish even when dispatched. A manual
workflow_dispatchfor beta.25 (run 28894382161) failed witherror_max_turns: 11 of its 20 turns were permission denials, because piped commands likegh api graphql | jqdon't match thegh/git-only Bash allowlist. Fixed by allowing common read-only text utilities (jq,cat,head,grep,sed, …) and raising--max-turnsto 50.Beta.25 prose. Since the pipeline couldn't produce it, this PR also adds the prose for
site/src/content/changelog/10.0.0-beta.25.md, written per the workflow prompt andwriting-style.md: leads with quality selection, calls out the three breaking changes (#1661, #1753, #1705) with migration guidance, and skips internal-only and net-reverted changes (the i18n stack, #1707).Changes
.github/workflows/changelog-prose.yml:--field→--raw-fieldin the dispatch relay; widen--allowedToolsand raise--max-turnsfor the prose job.site/src/content/changelog/10.0.0-beta.25.md: replace raw git-cliff bullets with narrative prose and fill in the frontmatterdescription.Testing
--raw-fieldis the documentedghflag for literal string inputs.Release: https://github.com/videojs/v10/releases/tag/%40videojs%2Fcore%4010.0.0-beta.25
🤖 Generated with Claude Code
https://claude.ai/code/session_018H1XZpVx3z9n6rCWyxGbeN
Note
Low Risk
Changes are limited to GitHub Actions dispatch inputs, automation settings, and site changelog content—no player runtime or auth paths.
Overview
CI: The release relay in
changelog-prose.ymlnow passestag_nameandrelease_urlwithgh workflow run --raw-fieldinstead of--field, with a comment explaining that@-prefixed tags were being misread as file paths.Prose automation: The Claude Code step raises
--max-turnsto 50 and widensallowedTools(extra Bash utilities) so the agent can gather PR context and rewrite changelogs more reliably.Docs:
site/src/content/changelog/10.0.0-beta.25.mddrops the long categorized bullet list in favor of narrative paragraphs (quality/settings menus, breaking Cast/hlsjs/capability moves, AirPlay/Vimeo/SPF, fixes/docs), sets frontmatterdescription, and ends with a first-time contributor thank-you.Reviewed by Cursor Bugbot for commit 8d34884. Bugbot is set up for automated code reviews on this repo. Configure here.