mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-19 20:01:08 -05:00
21 lines
455 B
JavaScript
21 lines
455 B
JavaScript
// Half-works to simplify the format but needs 'overwrite_changeset_changelog.py' in GHA to finish formatting
|
|
|
|
const getReleaseLine = async (changeset) => {
|
|
const [firstLine] = changeset.summary
|
|
.split("\n")
|
|
.map((l) => l.trim())
|
|
.filter(Boolean)
|
|
return `- ${firstLine}`
|
|
}
|
|
|
|
const getDependencyReleaseLine = async () => {
|
|
return ""
|
|
}
|
|
|
|
const changelogFunctions = {
|
|
getReleaseLine,
|
|
getDependencyReleaseLine,
|
|
}
|
|
|
|
module.exports = changelogFunctions
|