From fe7d5c07ed8437b0917b939f72eb77bba1c24f48 Mon Sep 17 00:00:00 2001 From: Skylar Simoncelli Date: Thu, 14 Nov 2024 19:32:26 +0100 Subject: [PATCH] fix: wording --- .github/actions/release/publish-draft-release/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/release/publish-draft-release/action.yml b/.github/actions/release/publish-draft-release/action.yml index 3f27bace7..87ecc9910 100644 --- a/.github/actions/release/publish-draft-release/action.yml +++ b/.github/actions/release/publish-draft-release/action.yml @@ -44,7 +44,8 @@ runs: updated_body=$(echo "$current_body" | \ sed 's/- \[ \] Staging preview environment/- [x] Staging preview environment/g' | \ sed 's/Pre-release candidate for/Release/g' | \ - sed 's/This is a draft pre-release candidate/This is a tested release/g') + sed 's/This is a draft pre-release candidate/This is a tested release/g' | \ + sed 's/that is undergoing testing/that has passed our automated testing/g') json_data=$(jq -n \ --arg name "$tag" \ --arg body "$updated_body" \