From f33e974d01a04807ac67c2a42bcf7e0c873e8168 Mon Sep 17 00:00:00 2001 From: Naman Malhotra Date: Wed, 13 Nov 2024 13:45:43 +0300 Subject: [PATCH] Improved messaging for CFE and PRR for slack (#52765) --- .github/workflows/new-cfe-prr-notifications.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/new-cfe-prr-notifications.yml b/.github/workflows/new-cfe-prr-notifications.yml index 649cc476740..fbc955b0ccf 100644 --- a/.github/workflows/new-cfe-prr-notifications.yml +++ b/.github/workflows/new-cfe-prr-notifications.yml @@ -72,9 +72,9 @@ jobs: // Determine the type of message based on the label name if (labelName === 'code freeze exception') { - message = `:arrow_right: New CFE request: ${issueTitle} ${issueUrl}`; + message = `:arrow_right: :ice_cube: New Code Freeze Exception request: ${issueTitle} ${issueUrl}`; } else { - message = `:arrow_right: New PRR request: ${issueTitle} ${issueUrl}`; + message = `:arrow_right: :release: New Point Release Request: ${issueTitle} ${issueUrl}`; } // Set the message as a core output