From 28b9afa8f8436430794b8322582aa9f722e3bb48 Mon Sep 17 00:00:00 2001 From: John Teague <164385719+johnformio@users.noreply.github.com> Date: Wed, 28 May 2025 13:15:31 -0500 Subject: [PATCH] Update sync-monorepo.mjs fix typo --- .github/workflows/sync-monorepo.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync-monorepo.mjs b/.github/workflows/sync-monorepo.mjs index 7cd12dec1..da440c6a1 100644 --- a/.github/workflows/sync-monorepo.mjs +++ b/.github/workflows/sync-monorepo.mjs @@ -1,6 +1,6 @@ -import { syncfromGithubAction } from 'monorepo-sync'; +import { syncFromGithubAction } from 'monorepo-sync'; -syncfromGithubAction() +syncFromGithubAction() .then(() => { console.log('Sync completed successfully'); process.exit(0); @@ -8,4 +8,4 @@ syncfromGithubAction() .catch((error) => { console.error('Error during sync:', error); process.exit(1); - }); \ No newline at end of file + });