use continue-on-error

master
Buckaroo Banzai 2021-02-01 07:33:18 +01:00 committed by GitHub
parent 194b7332e1
commit 7e1f9e60f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ jobs:
run: ./test.sh
- name: 📧 Discord success notification
if: ${{ secrets.discord_webhook }}
continue-on-error: true
env:
DISCORD_WEBHOOK: ${{ secrets.discord_webhook }}
uses: Ilshidur/action-discord@master
@ -25,7 +25,7 @@ jobs:
args: '☑️ Integration test passed for branch `${{ github.ref }}` and commit `${{ github.sha }}`'
- name: 📧 Discord failure notification
if: ${{ failure() && secrets.discord_webhook }}
if: failure()
env:
DISCORD_WEBHOOK: ${{ secrets.discord_webhook }}
uses: Ilshidur/action-discord@master