summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-11-11 14:27:13 -0600
committerAiden Cline <[email protected]>2025-11-11 14:27:13 -0600
commite5bc4cbbcf5df6a6c7e2fd87bc99e840cb3afc8a (patch)
tree0c3419a5708612a227d0f02f0ef52a735aaed337
parent459d5ec19b7155ee252db876452955745dd09ab3 (diff)
downloadopencode-e5bc4cbbcf5df6a6c7e2fd87bc99e840cb3afc8a.tar.gz
opencode-e5bc4cbbcf5df6a6c7e2fd87bc99e840cb3afc8a.zip
ci: update changelog script
-rwxr-xr-xscript/publish.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/script/publish.ts b/script/publish.ts
index 6dc0d9afc..a5006b1c6 100755
--- a/script/publish.ts
+++ b/script/publish.ts
@@ -49,6 +49,7 @@ if (!Script.preview) {
- Do NOT make general statements about "improvements", be very specific about what was changed.
- Do NOT include any information about code changes if they do not affect the user facing changes.
- For commits that are already well-written and descriptive, avoid rewording them. Simply capitalize the first letter, fix any misspellings, and ensure proper English grammar.
+ - DO NOT read any other commits than the ones listed above (THIS IS IMPORTANT TO AVOID DUPLICATING THINGS IN OUR CHANGELOG)
IMPORTANT: ONLY return a bulleted list of changes, do not include any other information. Do not include a preamble like "Based on my analysis..."
@@ -67,7 +68,9 @@ if (!Script.preview) {
notes.push(line)
}
}
- console.log(notes)
+ console.log("---- Generated Changelog ----")
+ console.log(notes.join("\n"))
+ console.log("-----------------------------")
opencode.server.close()
}