Skip to content

Commit

Permalink
Merge branch '1.8'
Browse files Browse the repository at this point in the history
* 1.8:
  Fix failure notifications
  • Loading branch information
pamil committed Dec 22, 2020
2 parents 439f4de + 32edb0c commit 3c28394
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ jobs:
notify-about-build-failure:
runs-on: ubuntu-18.04

if: ${{ failure() && (github.event_name == 'branch' || github.event_name == 'schedule' || github.event_name == 'release') }}
if: ${{ failure() && (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'release') }}

needs: [static-checks, test-application-without-frontend, test-application-with-frontend]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
notify-about-build-failure:
runs-on: ubuntu-18.04

if: ${{ failure() && (github.event_name == 'branch' || github.event_name == 'schedule' || github.event_name == 'release') }}
if: ${{ failure() && (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'release') }}

needs: [test]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
notify-about-build-failure:
runs-on: ubuntu-18.04

if: ${{ failure() && (github.event_name == 'branch' || github.event_name == 'schedule' || github.event_name == 'release') }}
if: ${{ failure() && (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'release') }}

needs: [test]

Expand Down

0 comments on commit 3c28394

Please sign in to comment.