From bb49ef985cc13f1b2b112fd5bd148a97bcc38ecc Mon Sep 17 00:00:00 2001 From: Jon Janego Date: Tue, 3 Sep 2024 11:43:30 -0500 Subject: [PATCH] Update main.ts --- src/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 0be8abb..25ffc53 100644 --- a/src/main.ts +++ b/src/main.ts @@ -24,6 +24,7 @@ import {getRefs} from './git-refs' import {groupDependenciesByManifest} from './utils' import {commentPr, MAX_COMMENT_LENGTH} from './comment-pr' import {getDeniedChanges} from './deny' +import {MAX_SUMMARY_LENGTH} from './summary' async function delay(ms: number): Promise { return new Promise(resolve => setTimeout(resolve, ms)) @@ -200,7 +201,7 @@ async function run(): Promise { } } } finally { - await core.summary.write() + await core.summary.write() // need to write the minSummary content to this } }