Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/deploy-to-control-plane-review-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down Expand Up @@ -293,11 +292,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');

Expand Down