From 2e73fe4a0f52bcaa70ed38fca971233f32ff6c71 Mon Sep 17 00:00:00 2001 From: Aras Abbasi Date: Thu, 16 May 2024 22:15:33 +0200 Subject: [PATCH] Revert "websocket: autobahn workflow should fail on error (#3259)" (#3270) This reverts commit 903c66777c2a3990c6dedfd2847ed79964164a84. --- .github/workflows/autobahn.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autobahn.yml b/.github/workflows/autobahn.yml index 1818dfa0be8..bbe80896fe8 100644 --- a/.github/workflows/autobahn.yml +++ b/.github/workflows/autobahn.yml @@ -53,11 +53,9 @@ jobs: - name: Report into CI id: report-ci run: npm run test:websocket:autobahn:report - env: - FAIL_ON_ERROR: true - name: Generate Report for PR Comment - if: (failure() || success()) && github.event_name == 'pull_request_target' + if: github.event_name == 'pull_request_target' id: report-markdown run: | echo "comment<> $GITHUB_OUTPUT @@ -67,7 +65,7 @@ jobs: REPORTER: markdown - name: Comment PR - if: (failure() || success()) && github.event_name == 'pull_request_target' + if: github.event_name == 'pull_request_target' uses: thollander/actions-comment-pull-request@v2 with: message: ${{ steps.report-markdown.outputs.comment }}