Skip to content

Commit a3f6825

Browse files
committed
Fix missing GChat notifications with workaround
This fix was suggested by GitHub Support as a workaround for a bug where `failure()` is not working for reusable workflows that will be fixed in a few months. Closes gh-16423
1 parent ea0ec9e commit a3f6825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
send-notification:
117117
name: Send Notification
118118
needs: [ perform-release ]
119-
if: ${{ failure() || cancelled() }}
119+
if: ${{ !success() }}
120120
runs-on: ubuntu-latest
121121
steps:
122122
- name: Send Notification

0 commit comments

Comments
 (0)