From c2696001c2abc326bc8695df8717a908c721396e Mon Sep 17 00:00:00 2001 From: ArkadiuszMichalski <2730894+ArkadiuszMichalski@users.noreply.github.com> Date: Sun, 14 Apr 2024 14:11:49 +0200 Subject: [PATCH] Allow any character in title/message Fix https://github.com/notepad-plus-plus/notepad-plus-plus/pull/14943#issuecomment-2053716053 Close #14993, close #14994, close #14995, close #14996, close #14997, close #14998 --- .github/workflows/CI_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index 270794993..2d7f4ddb9 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -31,7 +31,7 @@ jobs: $isMaster = $isPush -and $${{ github.ref_name == github.event.repository.master_branch }} if ($isPush) { - $commit_message = "${{ github.event.head_commit.message }}" + $commit_message = (git show -s --format=%B) } else { $last_commit = @(Invoke-RestMethod ${{ github.event.pull_request._links.commits.href }})[0] | Select-Object -Last 1