Workflows updates to manually merge changeset PRs and control those changes

This commit is contained in:
a8trejo
2024-12-17 17:16:46 -08:00
parent fa23dc0737
commit c9e07cca58
3 changed files with 24 additions and 8 deletions

View File

@@ -3,16 +3,21 @@ const getReleaseLine = async (changeset) => {
.split('\n')
.map(l => l.trim())
.filter(Boolean);
return `- ${firstLine}`;
return `- ${firstLine}`;
};
const getDependencyReleaseLine = async () => {
return '';
};
const getReleaseSummary = async (release) => {
return `## [${release.newVersion}]\n\n`;
};
const changelogFunctions = {
getReleaseLine,
getDependencyReleaseLine,
getReleaseSummary,
};
module.exports = changelogFunctions;