From 615359a6a5c3bfc6b96aa2566310ed213653023a Mon Sep 17 00:00:00 2001 From: David Benedeki Date: Mon, 17 Jun 2024 19:06:13 +0200 Subject: [PATCH] * Experiment XVI --- .github/workflows/pr_release_note_comment_check.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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));