Fix small CI escape issue (#13331)

Fixes #13298
This commit is contained in:
Félix Malfait
2025-07-22 12:13:53 +02:00
committed by GitHub
parent 8b5eb04b07
commit d59604c92d

View File

@ -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) {