From 04d491a3a17f8b4b87975b39967bc5888f32658c Mon Sep 17 00:00:00 2001 From: Kent Huang Date: Tue, 14 May 2024 16:08:55 +0800 Subject: [PATCH] [Feature] DRC-417 Summary should be processed even if run is failed Signed-off-by: Kent Huang --- .github/workflows/recce_ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/recce_ci.yml b/.github/workflows/recce_ci.yml index 6c938025e..7c6951348 100644 --- a/.github/workflows/recce_ci.yml +++ b/.github/workflows/recce_ci.yml @@ -61,6 +61,7 @@ jobs: recce run --github-pull-request-url ${{ github.event.pull_request.html_url }} - name: Archive Recce State File + if: always() uses: actions/upload-artifact@v4 id: recce-artifact-uploader with: @@ -68,6 +69,7 @@ jobs: path: recce_state.json - name: Prepare Recce Summary + if: always() id: recce-summary run: | recce summary recce_state.json > recce_summary.md @@ -100,6 +102,7 @@ jobs: ``` - name: Comment on pull request + if: always() uses: thollander/actions-comment-pull-request@v2 with: filePath: recce_summary.md