Fix workflow notifications (#8544)
This commit is contained in:
parent
bc870bac73
commit
bea517a3fc
|
@ -34,7 +34,7 @@ jobs:
|
|||
if: always()
|
||||
uses: ./.github/workflows/reusable-workflow-notification.yml
|
||||
with:
|
||||
success: |
|
||||
success: >-
|
||||
${{
|
||||
needs.common.result == 'success' &&
|
||||
needs.test-latest-deps.result == 'success'
|
||||
|
|
|
@ -46,7 +46,7 @@ jobs:
|
|||
if: always()
|
||||
uses: ./.github/workflows/reusable-workflow-notification.yml
|
||||
with:
|
||||
success: |
|
||||
success: >-
|
||||
${{
|
||||
needs.common.result == 'success' &&
|
||||
needs.test-latest-deps.result == 'success' &&
|
||||
|
|
|
@ -75,7 +75,7 @@ jobs:
|
|||
if: always()
|
||||
uses: ./.github/workflows/reusable-workflow-notification.yml
|
||||
with:
|
||||
success: |
|
||||
success: >-
|
||||
${{
|
||||
needs.publishLinux.result == 'success' &&
|
||||
needs.publishWindows.result == 'success'
|
||||
|
|
Loading…
Reference in New Issue