From 8e759c81232a77e7a4ffd068d4aea0cd83cf6118 Mon Sep 17 00:00:00 2001 From: Shahriyar Jalayeri Date: Thu, 16 Nov 2023 11:38:10 +0100 Subject: [PATCH] .github/workflows/eden.yml: remove report_pr_publish job The report_pr_publish fails to comment on PRs because of some sort of permission error, lets remove it for now. We still fail the Eden PR test immidiatly if images are not published on dockerhub, so no worry about waisting Eden runners looping in a confused state for 5 hours and then failing. Signed-off-by: Shahriyar Jalayeri --- .github/workflows/eden.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/eden.yml b/.github/workflows/eden.yml index 2f1f19b995..fa5e1d5205 100644 --- a/.github/workflows/eden.yml +++ b/.github/workflows/eden.yml @@ -45,23 +45,6 @@ jobs: exit 1 fi - report_pr_publish: - runs-on: ubuntu-latest - needs: check_pr_publish - if: failure() - permissions: - issues: write - steps: - - uses: actions/github-script@v6 - with: - script: | - github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: '⚠️ Docker image is not available on Docker Hub to run Eden PR tests. Please wait for the image to be built and published.' - }) - test_suite_pr: needs: check_pr_publish if: github.event.review.state == 'approved'