Skip to content

Commit

Permalink
turn off slack notification temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
SandraRodgers committed Jul 24, 2024
1 parent 4d398f1 commit d8032c5
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/update-deepgram-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,24 +77,24 @@ jobs:
DEEPGRAM_API_KEY: ${{ secrets.DEEPGRAM_API_KEY }}
run: go test -v ./tests

- name: Notify on failure
if: failure()
uses: slackapi/[email protected]
with:
payload: |
{
"text": "The tests have FAILED for ${{ github.repository }}."
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
# - name: Notify on failure
# if: failure()
# uses: slackapi/[email protected]
# with:
# payload: |
# {
# "text": "The tests have FAILED for ${{ github.repository }}."
# }
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

- name: Notify on success
if: success()
uses: slackapi/[email protected]
with:
payload: |
{
"text": "The tests have passed for ${{ github.repository }}."
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
# - name: Notify on success
# if: success()
# uses: slackapi/[email protected]
# with:
# payload: |
# {
# "text": "The tests have passed for ${{ github.repository }}."
# }
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

0 comments on commit d8032c5

Please sign in to comment.