Skip to content

Commit

Permalink
Fix circular structure error
Browse files Browse the repository at this point in the history
  • Loading branch information
ygnoh committed Dec 2, 2024
1 parent 19a143b commit 6f6c4e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 6f6c4e5

Please sign in to comment.