From 31a4a7459894e48a5d6c891fa66f333c32854690 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 2 Oct 2024 15:23:42 +0200 Subject: [PATCH] chore: do not create a GitHub Status Check for merge results (#32928) --- .github/workflows/create_test_report.yml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.github/workflows/create_test_report.yml b/.github/workflows/create_test_report.yml index 9d382f1ee6..b20f57573b 100644 --- a/.github/workflows/create_test_report.yml +++ b/.github/workflows/create_test_report.yml @@ -22,6 +22,7 @@ jobs: env: DEBUG: pw:install PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + ELECTRON_SKIP_BINARY_DOWNLOAD: 1 - run: npm run build - name: Download blob report artifact @@ -120,21 +121,3 @@ jobs: ]), }); core.info('Posted comment: ' + response.html_url); - - const check = await github.rest.checks.create({ - ...context.repo, - name: 'Merge report (${{ github.event.workflow_run.name }})', - head_sha: '${{ github.event.workflow_run.head_sha }}', - status: 'completed', - conclusion: 'success', - details_url: reportUrl, - output: { - title: 'Test results for "${{ github.event.workflow_run.name }}"', - summary: [ - reportMd, - '', - '---', - `Full [HTML report](${reportUrl}). Merge [workflow run](${mergeWorkflowUrl}).` - ].join('\n'), - } - });