do not notify if skipped w/ burnettk

This commit is contained in:
jasquat 2023-05-02 12:01:34 -04:00
parent e4bc14c9aa
commit afdee2d61e
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify on Backend Tests failure
if: ${{ github.event.workflow_run.conclusion != 'success' }}
if: ${{ github.event.workflow_run.conclusion != 'success' && github.event.workflow_run.conclusion != 'skipped' }}
run: |
curl -X POST -H 'Content-type: application/json' \
--data '{"text":"spiff-arena workflow <${{ github.event.workflow_run.html_url }}|${{ github.event.workflow.name }}> ended with conclusion ${{github.event.workflow_run.conclusion}}!"}' \