Skip to content

Commit

Permalink
Update ivelum/github-action-slack-notify-build
Browse files Browse the repository at this point in the history
Trying to fix the set-output deprecation warning.
  • Loading branch information
Perlence committed Dec 6, 2024
1 parent c3c691b commit 23831c7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Send build notifications to Slack
- uses: ivelum/github-action-slack-notify-build@v1.6.0
- uses: ivelum/github-action-slack-notify-build@v1.7.2
id: slack
with:
channel_id: C0528Q7QK3M
Expand All @@ -35,11 +35,12 @@ jobs:

# Send notification on build or deploy failure
- name: Notify slack fail
uses: ivelum/github-action-slack-notify-build@v1.6.0
uses: ivelum/github-action-slack-notify-build@v1.7.2
if: failure()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
with:
message_id: ${{ needs.notify-build-start.outputs.status_message_id }}
channel_id: C0528Q7QK3M
status: FAILED
color: '#d7263d'
Expand All @@ -51,7 +52,7 @@ jobs:
steps:
# Send notification on build success
- name: Notify slack success
uses: ivelum/github-action-slack-notify-build@v1.6.0
uses: ivelum/github-action-slack-notify-build@v1.7.2
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
with:
Expand Down

0 comments on commit 23831c7

Please sign in to comment.