Skip to content

Commit 751d7ae

Browse files
authored
build: avoid notification spam by failing test reporter (#4072)
1 parent d1fa816 commit 751d7ae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish-test-reports.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ jobs:
1515
JABBA_JDK: [ 1.8, 1.11 ]
1616
steps:
1717
- uses: dorny/test-reporter@v1
18+
# avoid excessive notification spam, fail-on-error seems broken https://github.com/dorny/test-reporter/issues/161
19+
continue-on-error: true
1820
with:
1921
artifact: test-results-${{ matrix.JABBA_JDK }}-${{ matrix.SCALA_VERSION }}
2022
name: Test Results Details / Scala ${{ matrix.SCALA_VERSION }} on JDK ${{ matrix.JABBA_JDK }}
21-
fail-on-error: 'false'
23+
fail-on-error: false
2224
path: '**/target/test-reports/*.xml'
2325
reporter: java-junit

0 commit comments

Comments
 (0)