From c42fd5375f43a762b267b1b015601ea24f477a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Mon, 9 Oct 2023 17:36:19 +0200 Subject: [PATCH] Fix the git commands again --- .github/workflows/trigger-benchmarks-on-message.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trigger-benchmarks-on-message.yml b/.github/workflows/trigger-benchmarks-on-message.yml index 2ab2805aa..354a9bbd2 100644 --- a/.github/workflows/trigger-benchmarks-on-message.yml +++ b/.github/workflows/trigger-benchmarks-on-message.yml @@ -74,9 +74,9 @@ jobs: # Compute the diff of the benchmarks and send a message on the GitHub PR - name: Compute and send a message in the PR run: | - export base=$(git rev-parse $(git cherry main | head -n 1 | cut -c 3-)~ | cut -c -8) + export base=$(git log --pretty=%p -n 1) echo 'Here are your benchmarks diff 👊' >> body.txt echo '```' >> body.txt - ./benchmaks/scripts/compare.sh $base ${{ steps.file.outputs.basename }}.json >> body.txt + ./benchmarks/scripts/compare.sh $base ${{ steps.file.outputs.basename }}.json >> body.txt echo '```' >> body.txt gh pr comment ${GITHUB_REF#refs/heads/} --body-file body.txt