Skip to content

Commit 197b0c5

Browse files
committed
[Fix] Update recce summary output summary
Signed-off-by: Kent Huang <[email protected]>
1 parent 5dd9083 commit 197b0c5

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/recce_ci.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,20 @@ jobs:
7272
run: |
7373
recce summary recce_state.json > recce_summary.md
7474
cat recce_summary.md >> $GITHUB_STEP_SUMMARY
75-
echo "${{ env.NEXT_STEP_MESSAGE }}" >> recce_summary.md
75+
echo '${{ env.NEXT_STEP_MESSAGE }}' >> recce_summary.md
7676
env:
7777
ARTIFACT_URL: ${{ steps.recce-artifact-uploader.outputs.artifact-url }}
7878
NEXT_STEP_MESSAGE: |
7979
## Next Steps
80-
Recce `run` successfully completed.
81-
Please download the [artifact](${{ steps.recce-artifact-uploader.outputs.artifact-url }}) for the state file.
80+
If you want to check more detail inforamtion about the recce result,
81+
please download the [artifact](${{ steps.recce-artifact-uploader.outputs.artifact-url }}) file and open it by [Recce](https://pypi.org/project/recce/) CLI.
82+
```bash
83+
# Unzip the downloaded artifact file
84+
tar -xf recce-state-file.zip
85+
86+
# Launch the recce server based on the state file
87+
recce server --review recce_state.json
88+
```
8289
8390
- name: Comment on pull request
8491
uses: thollander/actions-comment-pull-request@v2

0 commit comments

Comments
 (0)