From 48fa8b4232ce8c29836e80c7e4e0c64251566752 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Tue, 30 Apr 2024 11:42:37 -0700 Subject: [PATCH] fix: await check update (#290) --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 97b041a..134536c 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -677,7 +677,7 @@ export const backportImpl = async ( log('backportImpl', LogLevel.INFO, 'Backport process complete'); } - context.octokit.checks.update( + await context.octokit.checks.update( context.repo({ check_run_id: checkRun.id, name: checkRun.name,