diff --git a/.github/actions/merge-changelogs/index.js b/.github/actions/merge-changelogs/index.js index 60ba9a865f..fd15ccb72f 100644 --- a/.github/actions/merge-changelogs/index.js +++ b/.github/actions/merge-changelogs/index.js @@ -26,6 +26,8 @@ function getPackageName(changelog) { } function splitByVersion(changelog) { return changelog.split('\n## ').map(h2 => { + (0, core_1.info)('splitting by version'); + (0, core_1.info)(h2); const [version, ...content] = h2.split('\n'); return { version, diff --git a/build-packages/merge-changelogs/index.ts b/build-packages/merge-changelogs/index.ts index 6e92a79706..c91d3cfb6a 100644 --- a/build-packages/merge-changelogs/index.ts +++ b/build-packages/merge-changelogs/index.ts @@ -32,6 +32,8 @@ function getPackageName(changelog: string): string { function splitByVersion(changelog: string): ContentByVersion[] { return changelog.split('\n## ').map(h2 => { + info('splitting by version'); + info(h2); const [version, ...content] = h2.split('\n'); return { version,