We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8352d7 commit 903c667Copy full SHA for 903c667
.github/workflows/autobahn.yml
@@ -53,9 +53,11 @@ jobs:
53
- name: Report into CI
54
id: report-ci
55
run: npm run test:websocket:autobahn:report
56
+ env:
57
+ FAIL_ON_ERROR: true
58
59
- name: Generate Report for PR Comment
- if: github.event_name == 'pull_request_target'
60
+ if: (failure() || success()) && github.event_name == 'pull_request_target'
61
id: report-markdown
62
run: |
63
echo "comment<<nEOFn" >> $GITHUB_OUTPUT
@@ -65,7 +67,7 @@ jobs:
65
67
REPORTER: markdown
66
68
69
- name: Comment PR
70
71
uses: thollander/actions-comment-pull-request@v2
72
with:
73
message: ${{ steps.report-markdown.outputs.comment }}
0 commit comments