Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michalchecinski committed Nov 28, 2023
1 parent f1ff892 commit c3f31a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions report-deployment-status-to-slack/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ runs:
run: |
MESSAGE=""
case $EVENT in
start)
"start")
MESSAGE=":loading: Updating ${{ inputs.environment }} to `${{ inputs.tag }}` on [${{ inputs.project }}](${{ inputs.url }})."
;;
success)
"success")
MESSAGE=":white_check_mark: Updated ${{ inputs.environment }} to `${{ inputs.tag }}` on ${{ inputs.project }}."
;;
failure)
"failure")
MESSAGE=":x: Failed to update ${{ inputs.environment }} to `${{ inputs.tag }}` on ${{ inputs.project }}.\nPlease retry or contact @devops team."
;;
esac
Expand Down

0 comments on commit c3f31a9

Please sign in to comment.