From 0b53e53dc0052b6e5b578b768d80b6a383cddad5 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Oliveira" Date: Wed, 29 May 2024 15:44:39 -0300 Subject: [PATCH] UPSTREAM: : Add a conditional in the commit checker workflow to avoid return an error code Signed-off-by: Ricardo M. Oliveira --- .github/workflows/commit-check-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-check-pr.yml b/.github/workflows/commit-check-pr.yml index e0b87346bcb..c3dd22746f1 100644 --- a/.github/workflows/commit-check-pr.yml +++ b/.github/workflows/commit-check-pr.yml @@ -89,6 +89,6 @@ jobs: you adhere to the commit checker formatting ``` EOF - podman run -q -v ${{ github.workspace }}:/src/app-root quay.io/rmartine/commitchecker:latest --start ${{ steps.get-commits.outputs.master_commit_hash }} --end ${{ steps.get-commits.outputs.last_commit_hash }} >> /tmp/body-file.txt 2>&1 + podman run -q -v ${{ github.workspace }}:/src/app-root quay.io/rmartine/commitchecker:latest --start ${{ steps.get-commits.outputs.master_commit_hash }} --end ${{ steps.get-commits.outputs.last_commit_hash }} >> /tmp/body-file.txt 2>&1 || true gh pr comment ${{ env.PR_NUMBER }} --body-file /tmp/body-file.txt