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 3750329 commit 783f372Copy full SHA for 783f372
.github/workflows/test_backend.yml
@@ -162,7 +162,7 @@ jobs:
162
163
publish-status:
164
runs-on: ubuntu-latest
165
- if: always()
+ if: always() && needs.backend-tests.result != 'skipped'
166
needs: [backend-tests, publish-report]
167
steps:
168
- uses: actions/checkout@v4
.github/workflows/test_integration_playwright.yml
@@ -202,7 +202,7 @@ jobs:
202
203
204
205
+ if: always() && needs.integration-tests.result != 'skipped'
206
needs: [integration-tests, publish-report]
207
208
0 commit comments