From 1fb31f42eade9c4cd590fe953bf9d93ff257ae40 Mon Sep 17 00:00:00 2001 From: alkoleft Date: Tue, 4 Jun 2024 02:30:13 +0300 Subject: [PATCH] fix: publish error --- src/github/core.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/github/core.ts b/src/github/core.ts index a8c615c..a208873 100644 --- a/src/github/core.ts +++ b/src/github/core.ts @@ -56,7 +56,7 @@ export class GithubMerge { body: string, params: GitReviewParam[] ): Promise { - core.debug(`createReviewComments ${JSON.stringify(params)}`) + core.debug(`createReviewComments`) const comments: any = [] for (const i in params) { @@ -72,6 +72,7 @@ export class GithubMerge { return null } + core.debug('createReview') const response = await this.octokit.rest.pulls.createReview({ ...this.repo, pull_number: this.pull_number,