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 }}