Skip to content

Commit 51bbfcf

Browse files
[CI] E2E on PR - add more information in the comment
1 parent 1f6918c commit 51bbfcf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/e2e_core.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,9 @@ jobs:
198198
script: |
199199
const adapter = '${{ matrix.adapter.name }}';
200200
const url = '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}';
201-
const status = '${{ steps.tests.outcome }}';
202-
const body = `E2E ${adapter} build: \n${url}\n Status: ${status}`;
201+
const test_status = '${{ steps.tests.outcome }}';
202+
const job_status = '${{ job.status }}';
203+
const body = `E2E ${adapter} build:\n${url}\nJob status: ${job_status}. Test status: ${test_status}`;
203204
204205
github.rest.issues.createComment({
205206
issue_number: context.issue.number,

0 commit comments

Comments
 (0)