Skip to content

Commit

Permalink
Change "Updated" to "Deploy" (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
mimartin12 authored Mar 14, 2024
1 parent 3ca5c5f commit 116cb2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions report-deployment-status-to-slack/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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\`"
;;
Expand Down

0 comments on commit 116cb2f

Please sign in to comment.