Skip to content

Commit 50ca91d

Browse files
authored
Fix workflows (#8457)
1 parent 51ce896 commit 50ca91d

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,8 @@ jobs:
3434
if: always()
3535
uses: ./.github/workflows/reusable-workflow-notification.yml
3636
with:
37-
success: needs.common.result == 'success' && needs.test-latest-deps.result == 'success'
37+
success: |
38+
${{
39+
needs.common.result == 'success' &&
40+
needs.test-latest-deps.result == 'success'
41+
}}

.github/workflows/build-daily.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,10 @@ jobs:
4747
uses: ./.github/workflows/reusable-workflow-notification.yml
4848
with:
4949
success: |
50-
needs.common.result == 'success' &&
51-
needs.test-latest-deps.result == 'success' &&
52-
needs.muzzle.result == 'success' &&
53-
needs.markdown-link-check.result == 'success' &&
54-
needs.misspell-check.result == 'success'
50+
${{
51+
needs.common.result == 'success' &&
52+
needs.test-latest-deps.result == 'success' &&
53+
needs.muzzle.result == 'success' &&
54+
needs.markdown-link-check.result == 'success' &&
55+
needs.misspell-check.result == 'success'
56+
}}

.github/workflows/codeql-daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
if: always()
4242
uses: ./.github/workflows/reusable-workflow-notification.yml
4343
with:
44-
success: needs.analyze.result == 'success'
44+
success: ${{ needs.analyze.result == 'success' }}

.github/workflows/overhead-benchmark-daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ jobs:
5151
if: always()
5252
uses: ./.github/workflows/reusable-workflow-notification.yml
5353
with:
54-
success: needs.run-overhead-tests.result == 'success'
54+
success: ${{ needs.run-overhead-tests.result == 'success' }}

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,9 @@ jobs:
7575
if: always()
7676
uses: ./.github/workflows/reusable-workflow-notification.yml
7777
with:
78-
success: needs.publishLinux.result == 'success' && needs.publishWindows.result == 'success'
78+
success: |
79+
${{
80+
needs.publishLinux.result == 'success' &&
81+
needs.publishWindows.result == 'success'
82+
}}
7983

0 commit comments

Comments
 (0)