Skip to content

Commit 25f33aa

Browse files
authored
Merge pull request #49 from rimolive/rmartine-commit-checker
UPSTREAM: <carry>: Add a conditional in the commit checker workflow to avoid return an error code
2 parents 542e1d4 + 0b53e53 commit 25f33aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/commit-check-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,6 @@ jobs:
8989
you adhere to the commit checker formatting
9090
```
9191
EOF
92-
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
92+
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
9393
9494
gh pr comment ${{ env.PR_NUMBER }} --body-file /tmp/body-file.txt

0 commit comments

Comments
 (0)