Skip to content

Commit 2b1a27f

Browse files
committed
fix(ci): set commit check result correctly based on build result
1 parent 7b1fd45 commit 2b1a27f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pull-request-comment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,6 @@ jobs:
8282
sha: ${{ needs.check-comment.outputs.sha }}
8383
check_id: ${{ needs.check-comment.outputs.check-id }}
8484
status: 'completed'
85-
conclusion: ${{ job.status == 'success' && 'success' || 'failure' }}
85+
conclusion: ${{ needs.build-test-lint.result == 'success' && 'success' || 'failure' }}
8686
output: |
8787
{"title":"Testing", "summary":"Build & Test complete", "text":"Build & Test complete"}

0 commit comments

Comments
 (0)