From 63d16448da6aa3ad6411928875011e17a4d9fbff Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Tue, 27 Jun 2023 14:37:46 -0700 Subject: [PATCH] Fix newlines in PR bot reply --- .github/workflows/pr-modified-files.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-modified-files.yml b/.github/workflows/pr-modified-files.yml index 2ff4b6f5c067b..f0940bb8cecb5 100644 --- a/.github/workflows/pr-modified-files.yml +++ b/.github/workflows/pr-modified-files.yml @@ -125,7 +125,8 @@ jobs: MESSAGE="Looks like you're introducing a change to the public API surface area." MESSAGE+=" If this includes breaking changes, please document them" MESSAGE+=" [on our wiki's API Breaking Changes page](https://github.com/microsoft/TypeScript/wiki/API-Breaking-Changes)." - MESSAGE+="\n\nAlso, please make sure @DanielRosenwasser and @RyanCavanaugh are aware of the changes, just as a heads up." + MESSAGE+=$'\n\n' + MESSAGE+="Also, please make sure @DanielRosenwasser and @RyanCavanaugh are aware of the changes, just as a heads up." if ./already_commented.sh "Looks like you're introducing a change to the public API surface area."; then echo "Already commented."