From ae52e560c05a7715b4d2f36cf120ba0416dfa805 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 3 Dec 2024 10:01:45 +0100 Subject: [PATCH] Revert "workflows/eval: Add the eval summary as a comment" This reverts commit 38003ce53b4815bb1bc0250c3fd8de0da741faf9. --- .github/workflows/eval.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/eval.yml b/.github/workflows/eval.yml index 5c17cb86746e..f291e288c434 100644 --- a/.github/workflows/eval.yml +++ b/.github/workflows/eval.yml @@ -285,21 +285,3 @@ jobs: GH_TOKEN: ${{ github.token }} REPOSITORY: ${{ github.repository }} NUMBER: ${{ github.event.number }} - - - name: Adding comments - if: ${{ github.event_name == 'pull_request_target' }} - run: | - # Add the eval summary as a comment - body="$(jq -r ' - "## [Eval summary](https://github.com/" + env.GH_REPO + "/actions/runs/" + env.GITHUB_RUN_ID + "?pr=" + env.NUMBER + ")\n\n" + - "- Added packages: " + (.attrdiff.added | length | tostring) + "\n" + - "- Removed packages: " + (.attrdiff.removed | length | tostring) + "\n" + - "- Changed packages: " + (.attrdiff.changed | length | tostring) + "\n" + - "- Rebuild Linux: " + (.rebuildCountByKernel.linux | tostring) + "\n" + - "- Rebuild Darwin: " + (.rebuildCountByKernel.darwin | tostring) - '