Skip to content

Commit

Permalink
go
Browse files Browse the repository at this point in the history
  • Loading branch information
marikaner committed Sep 12, 2024
1 parent a47071c commit 7500703
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/actions/merge-changelogs/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions build-packages/merge-changelogs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ async function formatChangelog(parsedChangelogs: Change[]): Promise<string> {
export async function mergeChangelogs(): Promise<void> {
// TODO: use package for this
const workspaces = getInput('workspaces').split(',');
info(`workspaces: ${workspaces}`);
const workspacesWithVisibility = await Promise.all(
workspaces.map(async workspace => {
const packageJson = await readFile(resolve(workspace, 'package.json'), {
Expand All @@ -189,7 +188,6 @@ export async function mergeChangelogs(): Promise<void> {
const changelogs = await Promise.all(
pathsToPublicLogs.map(async file => readFile(file, { encoding: 'utf8' }))
);
info(`changelogs: ${changelogs}`);
const newChangelog = await formatChangelog(
mergeMessages(changelogs.map(log => parseChangelog(log)).flat())
);
Expand Down

0 comments on commit 7500703

Please sign in to comment.