We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6918c commit 51bbfcfCopy full SHA for 51bbfcf
.github/workflows/e2e_core.yml
@@ -198,8 +198,9 @@ jobs:
198
script: |
199
const adapter = '${{ matrix.adapter.name }}';
200
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}`;
+ const test_status = '${{ steps.tests.outcome }}';
+ const job_status = '${{ job.status }}';
203
+ const body = `E2E ${adapter} build:\n${url}\nJob status: ${job_status}. Test status: ${test_status}`;
204
205
github.rest.issues.createComment({
206
issue_number: context.issue.number,
0 commit comments