Skip to content

Commit

Permalink
Merge pull request #49 from rimolive/rmartine-commit-checker
Browse files Browse the repository at this point in the history
UPSTREAM: <carry>: Add a conditional in the commit checker workflow to avoid return an error code
  • Loading branch information
rimolive authored May 29, 2024
2 parents 542e1d4 + 0b53e53 commit 25f33aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/commit-check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 25f33aa

Please sign in to comment.