Add skip ci to discord notifications (#696)

pull/691/head
samwiseg0 3 years ago committed by GitHub
parent f7c0769deb
commit e80920faa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -63,7 +63,7 @@ jobs:
discord:
name: Send Discord Notification
needs: build_and_push
if: always() && github.event_name != 'pull_request'
if: always() && github.event_name != 'pull_request' && !contains(github.event.head_commit.message, '[skip ci]')
runs-on: ubuntu-20.04
steps:
- name: Get Build Job Status

@ -75,7 +75,7 @@ jobs:
discord:
name: Send Discord Notification
needs: build-snap
if: always()
if: always() && !contains(github.event.head_commit.message, '[skip ci]')
runs-on: ubuntu-20.04
steps:
- name: Get Build Job Status

Loading…
Cancel
Save