From 729ce0e2bae5f564f8a80fd86ca67f95e85308e0 Mon Sep 17 00:00:00 2001 From: Scott Lepper Date: Mon, 9 Jun 2025 15:10:52 -0400 Subject: [PATCH] Dashboards - E2E - remove unnecessary steps (#106439) --- .../workflows/e2e-dashboard-new-layouts.yml | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/e2e-dashboard-new-layouts.yml b/.github/workflows/e2e-dashboard-new-layouts.yml index e50b6dee15a..a93ef052666 100644 --- a/.github/workflows/e2e-dashboard-new-layouts.yml +++ b/.github/workflows/e2e-dashboard-new-layouts.yml @@ -40,23 +40,3 @@ jobs: runTests: false - name: Run dashboardNewLayouts e2e run: yarn e2e:dashboard-new-layouts - - name: Post PR comment on fail - uses: actions/github-script@v7 - if: failure() - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - script: | - const prNumber = context.payload.pull_request.number; - const runId = context.runId; - const repoUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}`; - const runUrl = `${repoUrl}/actions/runs/${runId}`; - - await github.rest.issues.createComment({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: prNumber, - body: `⚠️ E2E workflow for dashboardNewLayouts has failed. [Click here to view the run](${runUrl}).` - }); - - name: Always succeed # This is a workaround to make the job pass even if the previous step fails - if: failure() - run: exit 0