From 1533bff48f8a642089705dcc2dbebb0934ff7d9d Mon Sep 17 00:00:00 2001 From: Anindita Ghosh <88458927+AnieeG@users.noreply.github.com> Date: Wed, 9 Nov 2022 11:46:47 -0800 Subject: [PATCH] post results in comments only in case of failure (#50) --- chainlink-testing-framework/run-tests/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chainlink-testing-framework/run-tests/action.yml b/chainlink-testing-framework/run-tests/action.yml index 30b0b76..7e3e739 100644 --- a/chainlink-testing-framework/run-tests/action.yml +++ b/chainlink-testing-framework/run-tests/action.yml @@ -137,7 +137,7 @@ runs: # Reporting and cleanup - name: Publish Test Results uses: EnricoMi/publish-unit-test-result-action@v2 - if: always() + if: failure() with: junit_files: ${{ inputs.publish_report_paths }} github_token: ${{ inputs.token }}