From b49b5f16f911ea85053cc723e3ce4f9bd309c7c2 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Mon, 19 Aug 2024 12:14:34 +0200 Subject: [PATCH] [INFRA] Always create comment --- .github/workflows/cron_api.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cron_api.yml b/.github/workflows/cron_api.yml index 9d21193be1..2eb74af835 100644 --- a/.github/workflows/cron_api.yml +++ b/.github/workflows/cron_api.yml @@ -60,6 +60,7 @@ jobs: run: make -k 2>&1 | tee build.log - name: Create comment body + if: always() id: comment-body run: | if [[ "${{ job.status }}" == "success" ]]; then @@ -84,6 +85,7 @@ jobs: GH_REPO: ${{ github.repository }} - name: Find Comment + if: always() uses: peter-evans/find-comment@v3 id: find_comment with: @@ -91,6 +93,7 @@ jobs: body-includes: ${{ matrix.build }} on ${{ matrix.compiler }} - name: Update comment + if: always() uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ steps.find_comment.outputs.comment-id }}