There was an error while loading. Please reload this page.
1 parent 596991f commit 3c9ca8fCopy full SHA for 3c9ca8f
1 file changed
.github/workflows/e2e.yml
@@ -127,7 +127,8 @@ jobs:
127
e2e_report:
128
name: Merge Playwright report
129
runs-on: ubuntu-latest
130
- if: always()
+ # Skip when `e2e` did not run (e.g. merge push to main); merge-reports fails with no blob artifacts.
131
+ if: ${{ !cancelled() && (needs.e2e.result == 'success' || needs.e2e.result == 'failure') }}
132
needs: [direct_push_check, e2e]
133
steps:
134
- name: Checkout
0 commit comments