From d59604c92d7f9139fd4fdc47fec388c2aa8100b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Tue, 22 Jul 2025 12:13:53 +0200 Subject: [PATCH] Fix small CI escape issue (#13331) Fixes #13298 --- .github/workflows/ci-breaking-changes.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-breaking-changes.yaml b/.github/workflows/ci-breaking-changes.yaml index 255b28f77..4d8b1073e 100644 --- a/.github/workflows/ci-breaking-changes.yaml +++ b/.github/workflows/ci-breaking-changes.yaml @@ -677,7 +677,7 @@ jobs: } // Check PR title for "breaking" - const prTitle = `${{ github.event.pull_request.title }}`; + const prTitle = ${{ toJSON(github.event.pull_request.title) }}; const titleContainsBreaking = prTitle.toLowerCase().includes('breaking'); if (hasBreakingChanges) {