1 parent ccb3859 commit cae6cb2Copy full SHA for cae6cb2
1 file changed
.github/workflows/ci.yml
@@ -38,12 +38,13 @@ jobs:
38
./gradlew :buildAckpine --stacktrace
39
40
- name: Run tests
41
+ if: github.repository == 'solrudev/Ackpine' && github.event.pull_request.labels.*.name != fromJSON(["documentation"])
42
run: |
43
./gradlew test
44
45
- name: Publish test report
46
uses: mikepenz/action-junit-report@a294a61c909bd8a4b563024a2faa28897fd53ebc # 6.1.0
- if: success() || failure()
47
+ if: github.repository == 'solrudev/Ackpine' && github.event.pull_request.labels.*.name != fromJSON(["documentation"]) && (success() || failure())
48
with:
49
report_paths: '**/build/test-results/*/TEST-*.xml'
50
0 commit comments