diff options
| author | Ryan Vogel <[email protected]> | 2026-01-28 17:34:14 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-28 17:34:14 -0500 |
| commit | c60464de0736cd74aee15d920d0832b3ffe88f86 (patch) | |
| tree | 2e6a6bb70fff9b059786fd4b008f50e9f3765e0a /script | |
| parent | 4e41ca74b9c0418bf3d03b9d5c308f52782b0787 (diff) | |
| download | opencode-c60464de0736cd74aee15d920d0832b3ffe88f86.tar.gz opencode-c60464de0736cd74aee15d920d0832b3ffe88f86.zip | |
fix(script): remove highlights template from release notes (#11052)
Diffstat (limited to 'script')
| -rwxr-xr-x | script/publish-start.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/publish-start.ts b/script/publish-start.ts index 644790f9d..385a2384b 100755 --- a/script/publish-start.ts +++ b/script/publish-start.ts @@ -6,7 +6,7 @@ import { buildNotes, getLatestRelease } from "./changelog" const highlightsTemplate = `## Highlights -<!-- +<!-- Add highlights before publishing. Delete this section if no highlights. - For multiple highlights, use multiple <highlight> tags @@ -40,7 +40,7 @@ console.log("=== publishing ===\n") if (!Script.preview) { const previous = await getLatestRelease() notes = await buildNotes(previous, "HEAD") - notes.unshift(highlightsTemplate) + // notes.unshift(highlightsTemplate) } const pkgjsons = await Array.fromAsync( |
