From 6f6c4e56b35e9327c123723745c245485f78dafb Mon Sep 17 00:00:00 2001 From: ygnoh Date: Mon, 2 Dec 2024 17:14:12 +0900 Subject: [PATCH] Fix circular structure error --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index a04461e..d8398ff 100644 --- a/index.js +++ b/index.js @@ -155,7 +155,7 @@ const sendMessage = async ({repoName, title, url, channelId, maxChanges}) => { const result = await sendMessage({repoName, title, url: prUrl, channelId, maxChanges}); - core.info(`message sent:\n${JSON.stringify(result, null, 2)}`); + core.info(`message sent:\n${JSON.stringify(result.data, null, 2)}`); } } catch (error) {