Skip to content

Commit

Permalink
Revert "websocket: autobahn workflow should fail on error (#3259)" (#…
Browse files Browse the repository at this point in the history
…3270)

This reverts commit 903c667.
  • Loading branch information
Uzlopak committed May 16, 2024
1 parent 4da45f9 commit 2e73fe4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/autobahn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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<<nEOFn" >> $GITHUB_OUTPUT
Expand All @@ -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 }}
Expand Down

0 comments on commit 2e73fe4

Please sign in to comment.