Skip to content

Commit

Permalink
πŸ‘· Add Slack notification (#32)
Browse files Browse the repository at this point in the history
* Add Slack notification

* 🚨 Fix linting
  • Loading branch information
falexwolf authored May 1, 2024
1 parent 82dcc53 commit 11769a5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,19 @@ jobs:
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
- uses: voxmedia/github-action-slack-notify-build@v1
if: success()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_GITHUB_ACTION }}
with:
channel_id: C05FDBBFJ1F
status: SUCCESS
color: good
- uses: voxmedia/github-action-slack-notify-build@v1
if: failure()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_GITHUB_ACTION }}
with:
channel_id: C05FDBBFJ1F
status: FAILURE
color: danger

0 comments on commit 11769a5

Please sign in to comment.