From 03de5413bc22f25df7d51860648b2e7b5cf6f398 Mon Sep 17 00:00:00 2001 From: Justin Gordon Date: Fri, 3 Oct 2025 13:01:00 -1000 Subject: [PATCH 1/2] Add celebratory emojis and make review app link more prominent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add celebration emojis (🎉 ✨ 🚀) to deploy success message - Make review app link larger and more prominent with markdown heading and bold - Add visual separator with arrow emoji for better call-to-action - Move technical details to smaller italics below the main link 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/deploy-to-control-plane-review-app.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-to-control-plane-review-app.yml b/.github/workflows/deploy-to-control-plane-review-app.yml index 63b5209e..58884d1d 100644 --- a/.github/workflows/deploy-to-control-plane-review-app.yml +++ b/.github/workflows/deploy-to-control-plane-review-app.yml @@ -293,11 +293,13 @@ jobs: // Define messages based on deployment status const successMessage = [ - '✅ Deployment complete for PR #' + prNumber + ', commit ' + '${{ env.PR_SHA }}', + '## 🎉 ✨ Deploy Complete! 🚀', '', - '🚀 [Review App for PR #' + prNumber + '](' + appUrl + ')', - consoleLink, + '### 🌐 [**➡️ Open Review App**](' + appUrl + ')', + '', + '_Deployment successful for PR #' + prNumber + ', commit ' + '${{ env.PR_SHA }}' + '_', '', + consoleLink, '📋 [View Completed Action Build and Deploy Logs](' + workflowUrl + ')' ].join('\n'); From b750220b9a3b6603efe39899e9a6c0666761fabe Mon Sep 17 00:00:00 2001 From: Justin Gordon Date: Fri, 3 Oct 2025 13:08:32 -1000 Subject: [PATCH 2/2] Make deploying status message more visually engaging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add heading formatting to deploying message - Make waiting status bold for emphasis - Remove extra blank line for cleaner spacing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/deploy-to-control-plane-review-app.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-to-control-plane-review-app.yml b/.github/workflows/deploy-to-control-plane-review-app.yml index 58884d1d..111f1548 100644 --- a/.github/workflows/deploy-to-control-plane-review-app.yml +++ b/.github/workflows/deploy-to-control-plane-review-app.yml @@ -241,12 +241,11 @@ jobs: with: script: | const deployingMessage = [ - '🚀 Deploying to Control Plane...', + '## 🚀 Deploying to Control Plane...', '', - '⏳ Waiting for deployment to be ready...', + '⏳ **Waiting for deployment to be ready...**', '', '📝 [View Deploy Logs](${{ env.WORKFLOW_URL }})', - '', process.env.CONSOLE_LINK ].join('\n');