From 116cb2f33ef6e9250c4525b2205ef3a2e761e796 Mon Sep 17 00:00:00 2001 From: MtnBurrit0 <77340197+mimartin12@users.noreply.github.com> Date: Thu, 14 Mar 2024 09:22:53 -0600 Subject: [PATCH] Change "Updated" to "Deploy" (#265) --- report-deployment-status-to-slack/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/report-deployment-status-to-slack/action.yml b/report-deployment-status-to-slack/action.yml index d2fe4ff5..bf9953c7 100644 --- a/report-deployment-status-to-slack/action.yml +++ b/report-deployment-status-to-slack/action.yml @@ -70,26 +70,26 @@ runs: case $event in start) - SLACK_MESSAGE=":loading: Updating $environment to \`$tag\` on $project. + SLACK_MESSAGE=":loading: Deploying \`$tag\` to $environment on $project. $url SHA: \`$commit_sha\`" ;; success) - SLACK_MESSAGE=":white_check_mark: Updated $environment to \`$tag\` on $project. + SLACK_MESSAGE=":white_check_mark: Deployed \`$tag\` to $environment on $project. $url SHA: \`$commit_sha\`" ;; failure) - SLACK_MESSAGE=":x: Failed to update $environment to \`$tag\` on $project. + SLACK_MESSAGE=":x: Failed to deploy \`$tag\` to $environment on $project. $url SHA: \`$commit_sha\` Please retry or contact @devops team." ;; cancelled) - SLACK_MESSAGE=":hand: Cancelled update of $environment to \`$tag\` on $project. + SLACK_MESSAGE=":hand: Cancelled deploy of \`$tag\` to $environment on $project. $url SHA: \`$commit_sha\`" ;;