File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -81,11 +81,14 @@ jobs:
81
81
git config user.name "${{ env.GH_USER_NAME }}"
82
82
83
83
cat <<"EOF" >> /tmp/body-file.txt
84
- Commit Checker results:
85
- ==== These are the results of the commit checker scans ====
86
- ==== If these are not commits from upstream kfp, then ====
87
- ==== please ensure you adhere to the commit checker formatting ====
88
- $(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 }})
84
+ ### Commit Checker results:
85
+
86
+ ```
87
+ **NOTE**: These are the results of the commit checker scans.
88
+ If these are not commits from upstream kfp, then please ensure
89
+ you adhere to the commit checker formatting
90
+ ```
89
91
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
90
93
91
94
gh pr comment ${{ env.PR_NUMBER }} --body-file /tmp/body-file.txt
You can’t perform that action at this time.
0 commit comments