diff --git a/.github/workflows/pr_release_note_comment_check.yml b/.github/workflows/pr_release_note_comment_check.yml index f865db432..3d9e44f68 100644 --- a/.github/workflows/pr_release_note_comment_check.yml +++ b/.github/workflows/pr_release_note_comment_check.yml @@ -74,7 +74,8 @@ jobs: with: script: | const comments = ${{ steps.get-comments.outputs.result }}; - console.log("Comments: ${{ steps.get-comments.outputs.result }}"); + console.log("Comments:"); + console.log(comments); const releaseNotesRegex = /release notes?:?/i; const hasReleaseNotes = comments.some(comment => releaseNotesRegex.test(comment));