Skip to content

Commit bea517a

Browse files
authored
Fix workflow notifications (#8544)
1 parent bc870ba commit bea517a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-daily-no-build-cache.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
if: always()
3535
uses: ./.github/workflows/reusable-workflow-notification.yml
3636
with:
37-
success: |
37+
success: >-
3838
${{
3939
needs.common.result == 'success' &&
4040
needs.test-latest-deps.result == 'success'

.github/workflows/build-daily.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
if: always()
4747
uses: ./.github/workflows/reusable-workflow-notification.yml
4848
with:
49-
success: |
49+
success: >-
5050
${{
5151
needs.common.result == 'success' &&
5252
needs.test-latest-deps.result == 'success' &&

.github/workflows/publish-smoke-test-fake-backend-images.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
if: always()
7676
uses: ./.github/workflows/reusable-workflow-notification.yml
7777
with:
78-
success: |
78+
success: >-
7979
${{
8080
needs.publishLinux.result == 'success' &&
8181
needs.publishWindows.result == 'success'

0 commit comments

Comments
 (0)