From 5d432c7c51fa5ea0aac7aac65e52db8f532c7794 Mon Sep 17 00:00:00 2001 From: Marika Marszalkowski Date: Thu, 12 Sep 2024 11:52:30 +0200 Subject: [PATCH] fg --- .github/actions/merge-changelogs/index.js | 2 ++ build-packages/merge-changelogs/index.ts | 2 ++ 2 files changed, 4 insertions(+) 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,