File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -170,3 +170,17 @@ jobs:
170170 name : Upload nextcloud log ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
171171 path : data/nextcloud.log
172172 retention-days : 5
173+
174+ summary :
175+ permissions :
176+ contents : none
177+ runs-on : ubuntu-latest-low
178+ needs : cypress
179+
180+ if : always()
181+
182+ name : cypress-summary
183+
184+ steps :
185+ - name : Summary status
186+ run : if ${{ needs.cypress.result != 'success' && needs.cypress.result != 'skipped' }}; then exit 1; fi
Original file line number Diff line number Diff line change @@ -166,3 +166,17 @@ jobs:
166166 body: comment
167167 })
168168 }
169+
170+ summary :
171+ permissions :
172+ contents : none
173+ runs-on : ubuntu-latest-low
174+ needs : integration
175+
176+ if : always()
177+
178+ name : integration-summary
179+
180+ steps :
181+ - name : Summary status
182+ run : if ${{ needs.integration.result != 'success' && needs.integration.result != 'skipped' }}; then exit 1; fi
You can’t perform that action at this time.
0 commit comments