From 253e7a3495b96c05ab3c8b3d291554a266d35a36 Mon Sep 17 00:00:00 2001 From: Shawn Jackson Date: Sun, 2 Nov 2025 10:52:24 -0800 Subject: [PATCH] RU-T39 Working on Changerawr build step --- .github/workflows/react-native-cicd.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/react-native-cicd.yml b/.github/workflows/react-native-cicd.yml index a9517a69..f560fd5e 100644 --- a/.github/workflows/react-native-cicd.yml +++ b/.github/workflows/react-native-cicd.yml @@ -302,8 +302,9 @@ jobs: extract_release_notes() { local body="$1" - # Remove "Summary by CodeRabbit" section (including any content under it until the next header) + # Remove "Summary by CodeRabbit" section and auto-generated comment line local cleaned_body="$(printf '%s\n' "$body" \ + | grep -v '' \ | awk ' BEGIN { skip=0 } /^## Summary by CodeRabbit/ { skip=1; next } @@ -399,14 +400,14 @@ jobs: exit 0 fi - # Read release notes - RELEASE_NOTES=$(cat RELEASE_NOTES.md) + # Read release notes and preserve markdown formatting + RELEASE_NOTES=$(